java.lang.Object
java.nio.channels.spi.AbstractInterruptibleChannel
java.nio.channels.SelectableChannel
java.nio.channels.spi.AbstractSelectableChannel
java.nio.channels.Pipe.SourceChannel
- すべての実装されたインタフェース:
- Closeable,- AutoCloseable,- Channel,- InterruptibleChannel,- ReadableByteChannel,- ScatteringByteChannel
- 含まれているクラス:
- Pipe
public abstract static class Pipe.SourceChannel extends AbstractSelectableChannel implements ReadableByteChannel, ScatteringByteChannel
Pipeの読取り可能な終端を表すチャネルです。- 導入されたバージョン:
- 1.4
- 
コンストラクタのサマリーコンストラクタ
- 
メソッドのサマリークラス java.nio.channels.spi.AbstractSelectableChannelで宣言されたメソッドblockingLock, configureBlocking, implCloseChannel, implCloseSelectableChannel, implConfigureBlocking, isBlocking, isRegistered, keyFor, provider, registerクラス java.nio.channels.SelectableChannelで宣言されたメソッドregisterクラス java.nio.channels.spi.AbstractInterruptibleChannelで宣言されたメソッドbegin, close, end, isOpenクラス java.lang.Objectで宣言されたメソッドclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitインタフェース java.nio.channels.ReadableByteChannelで宣言されたメソッドreadインタフェース java.nio.channels.ScatteringByteChannelで宣言されたメソッドread, read
- 
コンストラクタの詳細- 
SourceChannelprotected SourceChannel(SelectorProvider provider) このクラスの新しいインスタンスを構築します。- パラメータ:
- provider- セレクタ・プロバイダ
 
 
- 
- 
メソッドの詳細- 
validOpspublic final int validOps()このチャネルのサポートされている操作を識別する操作セットを返します。パイプソース・チャネルがサポートするのは読取りのみのため、このメソッドは SelectionKey.OP_READを返します。- 定義:
- validOps、クラス- SelectableChannel
- 戻り値:
- 有効な操作セット
 
 
-