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 |
Protected constructors |
|
---|---|
Pipe.SourceChannel(SelectorProvider provider) 构造这个类的新实例。 |
Public methods |
|
---|---|
final int |
validOps() 返回标识此频道支持的操作的操作集。 |
Inherited methods |
|
---|---|
From class java.nio.channels.spi.AbstractSelectableChannel
|
|
From class java.nio.channels.SelectableChannel
|
|
From class java.nio.channels.spi.AbstractInterruptibleChannel
|
|
From class java.lang.Object
|
|
From interface java.nio.channels.Channel
|
|
From interface java.nio.channels.InterruptibleChannel
|
|
From interface java.nio.channels.ReadableByteChannel
|
|
From interface java.nio.channels.ScatteringByteChannel
|
|
From interface java.io.Closeable
|
|
From interface java.lang.AutoCloseable
|
Pipe.SourceChannel (SelectorProvider provider)
构造这个类的新实例。
Parameters | |
---|---|
provider |
SelectorProvider
|
int validOps ()
返回标识此频道支持的操作的操作集。
管道源通道仅支持读取,因此此方法返回 OP_READ
。
Returns | |
---|---|
int |
The valid-operation set |