to top
Android APIs
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

Class Overview

Readable source channel used to read from a pipe.

Summary

Protected Constructors
Pipe.SourceChannel(SelectorProvider provider)
Constructs a new SourceChannel.
Public Methods
final int validOps()
Indicates that this channel only supports reading.
[Expand]
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.io.Closeable
From interface java.lang.AutoCloseable
From interface java.nio.channels.Channel
From interface java.nio.channels.InterruptibleChannel
From interface java.nio.channels.ReadableByteChannel
From interface java.nio.channels.ScatteringByteChannel

Protected Constructors

protected Pipe.SourceChannel (SelectorProvider provider)

Added in API level 1

Constructs a new SourceChannel.

Parameters
provider the provider of the channel.

Public Methods

public final int validOps ()

Added in API level 1

Indicates that this channel only supports reading.

Returns
  • a static value of OP_READ.