Class 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

    Constructors
    Modifier
    Constructor
    Description
    protected
    Constructs a new instance of this class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final int
    Returns an operation set identifying this channel's supported operations.

    Methods declared in class AbstractSelectableChannel

    blockingLock, configureBlocking, implCloseChannel, implCloseSelectableChannel, implConfigureBlocking, isBlocking, isRegistered, keyFor, provider, register
    Modifier and Type
    Method
    Description
    final Object
    Retrieves the object upon which the configureBlocking and register methods synchronize.
    configureBlocking(boolean block)
    Adjusts this channel's blocking mode.
    protected final void
    Closes this channel.
    protected abstract void
    Closes this selectable channel.
    protected abstract void
    implConfigureBlocking(boolean block)
    Adjusts this channel's blocking mode.
    final boolean
    Tells whether or not every I/O operation on this channel will block until it completes.
    final boolean
    Tells whether or not this channel is currently registered with any selectors.
    Retrieves the key representing the channel's registration with the given selector.
    Returns the provider that created this channel.
    register(Selector sel, int ops, Object att)
    Registers this channel with the given selector, returning a selection key.

    Methods declared in class SelectableChannel

    register
    Modifier and Type
    Method
    Description
    register(Selector sel, int ops)
    Registers this channel with the given selector, returning a selection key.

    Methods declared in class AbstractInterruptibleChannel

    begin, close, end, isOpen
    Modifier and Type
    Method
    Description
    protected final void
    Marks the beginning of an I/O operation that might block indefinitely.
    final void
    Closes this channel.
    protected final void
    end(boolean completed)
    Marks the end of an I/O operation that might block indefinitely.
    final boolean
    Tells whether or not this channel is open.

    Methods declared in class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    Modifier and Type
    Method
    Description
    protected Object
    Creates and returns a copy of this object.
    boolean
    Indicates whether some other object is "equal to" this one.
    protected void
    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<?>
    Returns the runtime class of this Object.
    int
    Returns a hash code value for this object.
    final void
    Wakes up a single thread that is waiting on this object's monitor.
    final void
    Wakes up all threads that are waiting on this object's monitor.
    Returns a string representation of the object.
    final void
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted.
    final void
    wait(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 void
    wait(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

    read
    Modifier and Type
    Method
    Description
    int
    Reads a sequence of bytes from this channel into the given buffer.

    Methods declared in interface ScatteringByteChannel

    read, read
    Modifier and Type
    Method
    Description
    long
    read(ByteBuffer[] dsts)
    Reads a sequence of bytes from this channel into the given buffers.
    long
    read(ByteBuffer[] dsts, int offset, int length)
    Reads a sequence of bytes from this channel into a subsequence of the given buffers.
  • Constructor Details

    • SourceChannel

      protected SourceChannel(SelectorProvider provider)
      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:
      validOps in class SelectableChannel
      Returns:
      The valid-operation set