Pipe.SinkChannel
public
static
abstract
class
Pipe.SinkChannel
extends AbstractSelectableChannel
implements
WritableByteChannel,
GatheringByteChannel
| java.lang.Object | ||||
| ↳ | java.nio.channels.spi.AbstractInterruptibleChannel | |||
| ↳ | java.nio.channels.SelectableChannel | |||
| ↳ | java.nio.channels.spi.AbstractSelectableChannel | |||
| ↳ | java.nio.channels.Pipe.SinkChannel | |||
A channel representing the writable end of a Pipe.
Summary
Protected constructors | |
|---|---|
Pipe.SinkChannel(SelectorProvider provider)
Initializes a new instance of this class. |
|
Public methods | |
|---|---|
final
int
|
validOps()
Returns an operation set identifying this channel's supported operations. |
Inherited methods | |
|---|---|
java.nio.channels.spi.AbstractSelectableChannel
| |
java.nio.channels.SelectableChannel
| |
java.nio.channels.spi.AbstractInterruptibleChannel
| |
java.lang.Object
| |
java.nio.channels.Channel
| |
java.nio.channels.InterruptibleChannel
| |
java.nio.channels.WritableByteChannel
| |
java.nio.channels.GatheringByteChannel
| |
java.io.Closeable
| |
java.lang.AutoCloseable
| |
Protected constructors
Pipe.SinkChannel
Pipe.SinkChannel (SelectorProvider provider)
Initializes a new instance of this class.
| Parameters | |
|---|---|
provider |
SelectorProvider: The selector provider
|
Public methods
validOps
int validOps ()
Returns an operation set identifying this channel's supported operations.
Pipe-sink channels only support writing, so this method returns
OP_WRITE.
| Returns | |
|---|---|
int |
The valid-operation set |
Interfaces
Classes
- AsynchronousChannelGroup
- AsynchronousFileChannel
- AsynchronousServerSocketChannel
- AsynchronousSocketChannel
- Channels
- DatagramChannel
- FileChannel
- FileChannel.MapMode
- FileLock
- MembershipKey
- Pipe
- Pipe.SinkChannel
- Pipe.SourceChannel
- SelectableChannel
- SelectionKey
- Selector
- ServerSocketChannel
- SocketChannel
Exceptions
- AcceptPendingException
- AlreadyBoundException
- AlreadyConnectedException
- AsynchronousCloseException
- CancelledKeyException
- ClosedByInterruptException
- ClosedChannelException
- ClosedSelectorException
- ConnectionPendingException
- FileLockInterruptionException
- IllegalBlockingModeException
- IllegalChannelGroupException
- IllegalSelectorException
- InterruptedByTimeoutException
- NoConnectionPendingException
- NonReadableChannelException
- NonWritableChannelException
- NotYetBoundException
- NotYetConnectedException
- OverlappingFileLockException
- ReadPendingException
- ShutdownChannelGroupException
- UnresolvedAddressException
- UnsupportedAddressTypeException
- WritePendingException


