Java.Nio.Channels.Channels: Method Members

The methods of Java.Nio.Channels.Channels are listed below. For a list of all members, see the Channels Members list.

See Also: Inherited members from Java.Lang.Object

Public Methods

static
NewInputStream(Java.Nio.Channels.IReadableByteChannel) : System.IO.Stream
Returns an input stream on the given channel.
static
NewOutputStream(Java.Nio.Channels.IWritableByteChannel) : System.IO.Stream
Returns an output stream on the given channel.
static
NewReadableChannel(System.IO.Stream) : Java.Nio.Channels.IReadableByteChannel
Returns a readable channel on the given input stream.
static
NewReader(Java.Nio.Channels.IReadableByteChannel, string) : Java.IO.Reader
Returns a reader that decodes bytes from a channel.
static
NewReader(Java.Nio.Channels.IReadableByteChannel, Java.Nio.Charset.CharsetDecoder, int) : Java.IO.Reader
Returns a reader that decodes bytes from a channel.
static
NewWritableChannel(System.IO.Stream) : Java.Nio.Channels.IWritableByteChannel
Returns a writable channel on the given output stream.
static
NewWriter(Java.Nio.Channels.IWritableByteChannel, string) : Java.IO.Writer
Returns a writer that encodes characters with the specified encoder and sends the bytes to the specified channel.
static
NewWriter(Java.Nio.Channels.IWritableByteChannel, Java.Nio.Charset.CharsetEncoder, int) : Java.IO.Writer
Returns a writer that encodes characters with the specified encoder and sends the bytes to the specified channel.