Class Pipe.SourceChannel
java.lang.Object
java.nio.channels.spi.AbstractInterruptibleChannel
java.nio.channels.SelectableChannel
java.nio.channels.spi.AbstractSelectableChannel
java.nio.channels.Pipe.SourceChannel
- All Implemented Interfaces:
Closeable, AutoCloseable, Channel, InterruptibleChannel, ReadableByteChannel, ScatteringByteChannel
- Enclosing class:
Pipe
public abstract static class Pipe.SourceChannel
extends AbstractSelectableChannel
implements ReadableByteChannel, ScatteringByteChannel
A channel representing the readable end of a
Pipe.- Since:
- 1.4
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedSourceChannel(SelectorProvider provider) Constructs 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 ReadableByteChannel
readModifier and TypeMethodDescriptionintread(ByteBuffer dst) Reads a sequence of bytes from this channel into the given buffer.Methods declared in interface ScatteringByteChannel
read, readModifier and TypeMethodDescriptionlongread(ByteBuffer[] dsts) Reads a sequence of bytes from this channel into the given buffers.longread(ByteBuffer[] dsts, int offset, int length) Reads a sequence of bytes from this channel into a subsequence of the given buffers.
-
Constructor Details
-
SourceChannel
Constructs 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-source channels only support reading, so this method returns
SelectionKey.OP_READ.- Specified by:
validOpsin classSelectableChannel- Returns:
- The valid-operation set
-