Class Pipe.SinkChannel
java.lang.Object
java.nio.channels.spi.AbstractInterruptibleChannel
java.nio.channels.SelectableChannel
java.nio.channels.spi.AbstractSelectableChannel
java.nio.channels.Pipe.SinkChannel
- All Implemented Interfaces:
Closeable, AutoCloseable, Channel, GatheringByteChannel, InterruptibleChannel, WritableByteChannel
- Enclosing class:
Pipe
public abstract static class Pipe.SinkChannel
extends AbstractSelectableChannel
implements WritableByteChannel, GatheringByteChannel
A channel representing the writable end of a
Pipe.- Since:
- 1.4
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedSinkChannel(SelectorProvider provider) Initializes a new instance of this class. -
Method Summary
Modifier and TypeMethodDescriptionfinal intvalidOps()Returns an operation set identifying this channel's supported operations.Methods declared in class AbstractSelectableChannel
blockingLock, configureBlocking, implCloseChannel, implCloseSelectableChannel, implConfigureBlocking, isBlocking, isRegistered, keyFor, provider, registerModifier and TypeMethodDescriptionfinal ObjectRetrieves the object upon which theconfigureBlockingandregistermethods synchronize.final SelectableChannelconfigureBlocking(boolean block) Adjusts this channel's blocking mode.protected final voidCloses this channel.protected abstract voidCloses this selectable channel.protected abstract voidimplConfigureBlocking(boolean block) Adjusts this channel's blocking mode.final booleanTells whether or not every I/O operation on this channel will block until it completes.final booleanTells whether or not this channel is currently registered with any selectors.final SelectionKeyRetrieves the key representing the channel's registration with the given selector.final SelectorProviderprovider()Returns the provider that created this channel.final SelectionKeyRegisters this channel with the given selector, returning a selection key.Methods declared in class SelectableChannel
registerModifier and TypeMethodDescriptionfinal SelectionKeyRegisters this channel with the given selector, returning a selection key.Methods declared in class AbstractInterruptibleChannel
begin, close, end, isOpenModifier and TypeMethodDescriptionprotected final voidbegin()Marks the beginning of an I/O operation that might block indefinitely.final voidclose()Closes this channel.protected final voidend(boolean completed) Marks the end of an I/O operation that might block indefinitely.final booleanisOpen()Tells whether or not this channel is open.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.Methods declared in interface GatheringByteChannel
write, writeModifier and TypeMethodDescriptionlongwrite(ByteBuffer[] srcs) Writes a sequence of bytes to this channel from the given buffers.longwrite(ByteBuffer[] srcs, int offset, int length) Writes a sequence of bytes to this channel from a subsequence of the given buffers.Methods declared in interface WritableByteChannel
writeModifier and TypeMethodDescriptionintwrite(ByteBuffer src) Writes a sequence of bytes to this channel from the given buffer.
-
Constructor Details
-
SinkChannel
Initializes a new instance of this class.- Parameters:
provider- The selector provider
-
-
Method Details
-
validOps
public final int validOps()Returns an operation set identifying this channel's supported operations.Pipe-sink channels only support writing, so this method returns
SelectionKey.OP_WRITE.- Specified by:
validOpsin classSelectableChannel- Returns:
- The valid-operation set
-