java.nio.channels

Interface ScatteringByteChannel

public interface ScatteringByteChannel extends ReadableByteChannel

Method Summary
longread(ByteBuffer[] srcs, int offset, int length)
Reads a sequence of bytes from this channel into a subsequence of the given buffers
longread(ByteBuffer[] srcs)
Reads a sequence of bytes from this channel into the given buffers

Method Detail

read

public long read(ByteBuffer[] srcs, int offset, int length)
Reads a sequence of bytes from this channel into a subsequence of the given buffers

Throws: AsynchronousCloseException If another thread closes this channel while the write operation is in progress ClosedByInterruptException If another thread interrupts the current thread while the write operation is in progress, thereby closing the channel and setting the current thread's interrupt status ClosedChannelException If this channel is closed IndexOutOfBoundsException If the preconditions on the offset and length parameters do not hold IOException If an error occurs NonReadableChannelException If this channel was not opened for reading

read

public long read(ByteBuffer[] srcs)
Reads a sequence of bytes from this channel into the given buffers

Throws: AsynchronousCloseException If another thread closes this channel while the write operation is in progress ClosedByInterruptException If another thread interrupts the current thread while the write operation is in progress, thereby closing the channel and setting the current thread's interrupt status ClosedChannelException If this channel is closed IOException If an error occurs NonReadableChannelException If this channel was not opened for reading