Class 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

    Constructors
    Modifier
    Constructor
    Description
    protected
    Initializes 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 GatheringByteChannel

    write, write
    Modifier and Type
    Method
    Description
    long
    write(ByteBuffer[] srcs)
    Writes a sequence of bytes to this channel from the given buffers.
    long
    write(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

    write
    Modifier and Type
    Method
    Description
    int
    Writes a sequence of bytes to this channel from the given buffer.
  • Constructor Details

    • SinkChannel

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