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


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

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)

Constructs a new instance of this class.

Parameters
provider SelectorProvider

Public methods

validOps

Added in API level 1
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

Hooray!