Most visited

Recently visited

Added in API level 1

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


表示 Pipe的可读端的 Pipe

摘要(Summary)

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

Protected constructors

Pipe.SourceChannel

Added in API level 1
Pipe.SourceChannel (SelectorProvider provider)

构造这个类的新实例。

参数(Parameters)
provider SelectorProvider

公共方法(Public methods)

validOps

Added in API level 1
int validOps ()

返回标识此频道支持的操作的操作集。

管道源通道仅支持读取,因此此方法返回 OP_READ

返回(Returns)
int The valid-operation set

Hooray!