Pipe.SourceChannel
public
static
abstract
class
Pipe.SourceChannel
extends AbstractSelectableChannel
implements
ReadableByteChannel,
ScatteringByteChannel
| java.lang.Object | ||||
| ↳ | java.nio.channels.spi.AbstractInterruptibleChannel | |||
| ↳ | java.nio.channels.SelectableChannel | |||
| ↳ | java.nio.channels.spi.AbstractSelectableChannel | |||
| ↳ | java.nio.channels.Pipe.SourceChannel | |||
A channel representing the readable end of a Pipe.
Summary
Protected constructors | |
|---|---|
Pipe.SourceChannel(SelectorProvider provider)
Constructs 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.ReadableByteChannel
| |
java.nio.channels.ScatteringByteChannel
| |
java.io.Closeable
| |
java.lang.AutoCloseable
| |
Protected constructors
Pipe.SourceChannel
Pipe.SourceChannel (SelectorProvider provider)
Constructs 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-source channels only support reading, so this method
returns OP_READ.
| 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


