public interface ExtendedAsynchronousByteChannel
extends java.nio.channels.AsynchronousByteChannel
AsynchronousByteChannel
adding optional timeouts and scattering and gathering methods.
These additions are analogous to the ones made by AsynchronousSocketChannel
.Modifier and Type | Method and Description |
---|---|
<A> void |
read(java.nio.ByteBuffer[] dsts,
int offset,
int length,
long timeout,
java.util.concurrent.TimeUnit unit,
A attach,
java.nio.channels.CompletionHandler<java.lang.Long,? super A> handler)
Reads a sequence of bytes from this channel into a subsequence of the
given buffers.
|
<A> void |
read(java.nio.ByteBuffer dst,
long timeout,
java.util.concurrent.TimeUnit unit,
A attach,
java.nio.channels.CompletionHandler<java.lang.Integer,? super A> handler)
Reads a sequence of bytes from this channel into the given buffer.
|
<A> void |
write(java.nio.ByteBuffer[] srcs,
int offset,
int length,
long timeout,
java.util.concurrent.TimeUnit unit,
A attach,
java.nio.channels.CompletionHandler<java.lang.Long,? super A> handler)
Writes a sequence of bytes to this channel from a subsequence of the given
buffers.
|
<A> void |
write(java.nio.ByteBuffer src,
long timeout,
java.util.concurrent.TimeUnit unit,
A attach,
java.nio.channels.CompletionHandler<java.lang.Integer,? super A> handler)
Writes a sequence of bytes to this channel from the given buffer.
|
<A> void read(java.nio.ByteBuffer dst, long timeout, java.util.concurrent.TimeUnit unit, A attach, java.nio.channels.CompletionHandler<java.lang.Integer,? super A> handler)
This method initiates an asynchronous read operation to read a
sequence of bytes from this channel into the given buffer. The handler
parameter is a completion handler that is invoked when the read
operation completes (or fails). The result passed to the completion
handler is the number of bytes read or -1
if no bytes could be
read because the channel has reached end-of-stream.
If a timeout is specified and the timeout elapses before the operation
completes then the operation completes with the exception InterruptedByTimeoutException
. Where a timeout occurs, and the
implementation cannot guarantee that bytes have not been read, or will not
be read from the channel into the given buffer, then further attempts to
read from the channel will cause an unspecific runtime exception to be
thrown.
Otherwise this method works in the same manner as the AsynchronousByteChannel.read(ByteBuffer, Object, CompletionHandler)
method.
dst
- The buffer into which bytes are to be transferredtimeout
- The maximum time for the I/O operation to completeunit
- The time unit of the timeout
argumentattach
- The object to attach to the I/O operation; can be null
handler
- The handler for consuming the resultjava.lang.IllegalArgumentException
- If the buffer is read-onlyjava.nio.channels.ReadPendingException
- If a read operation is already in progress on this channeljava.nio.channels.ShutdownChannelGroupException
- If the channel group has terminated<A> void read(java.nio.ByteBuffer[] dsts, int offset, int length, long timeout, java.util.concurrent.TimeUnit unit, A attach, java.nio.channels.CompletionHandler<java.lang.Long,? super A> handler)
handler
parameter is a completion
handler that is invoked when the read operation completes (or fails). The
result passed to the completion handler is the number of bytes read or
-1
if no bytes could be read because the channel has reached
end-of-stream.
This method initiates a read of up to r bytes from this channel, where r is the total number of bytes remaining in the specified subsequence of the given buffer array, that is,
dsts[offset].remaining() + dsts[offset+1].remaining() + ... + dsts[offset+length-1].remaining()
at the moment that the read is attempted.
Suppose that a byte sequence of length n is read, where 0 < n <= r. Up to the first dsts[offset].remaining() bytes of this sequence are transferred into buffer dsts[offset], up to the next dsts[offset+1].remaining() bytes are transferred into buffer dsts[offset+1], and so forth, until the entire byte sequence is transferred into the given buffers. As many bytes as possible are transferred into each buffer, hence the final position of each updated buffer, except the last updated buffer, is guaranteed to be equal to that buffer's limit. The underlying operating system may impose a limit on the number of buffers that may be used in an I/O operation. Where the number of buffers (with bytes remaining), exceeds this limit, then the I/O operation is performed with the maximum number of buffers allowed by the operating system.
If a timeout is specified and the timeout elapses before the operation
completes then it completes with the exception InterruptedByTimeoutException
. Where a timeout occurs, and the
implementation cannot guarantee that bytes have not been read, or will not
be read from the channel into the given buffers, then further attempts to
read from the channel will cause an unspecific runtime exception to be
thrown.
dsts
- The buffers into which bytes are to be transferredoffset
- The offset within the buffer array of the first buffer into which
bytes are to be transferred; must be non-negative and no larger than
dsts.length
length
- The maximum number of buffers to be accessed; must be non-negative
and no larger than dsts.length - offset
timeout
- The maximum time for the I/O operation to completeunit
- The time unit of the timeout
argumentattach
- The object to attach to the I/O operation; can be null
handler
- The handler for consuming the resultjava.lang.IndexOutOfBoundsException
- If the pre-conditions for the offset
and length
parameter aren't metjava.lang.IllegalArgumentException
- If the buffer is read-onlyjava.nio.channels.ReadPendingException
- If a read operation is already in progress on this channeljava.nio.channels.ShutdownChannelGroupException
- If the channel group has terminated<A> void write(java.nio.ByteBuffer src, long timeout, java.util.concurrent.TimeUnit unit, A attach, java.nio.channels.CompletionHandler<java.lang.Integer,? super A> handler)
This method initiates an asynchronous write operation to write a
sequence of bytes to this channel from the given buffer. The handler
parameter is a completion handler that is invoked when the write
operation completes (or fails). The result passed to the completion
handler is the number of bytes written.
If a timeout is specified and the timeout elapses before the operation
completes then it completes with the exception InterruptedByTimeoutException
. Where a timeout occurs, and the
implementation cannot guarantee that bytes have not been written, or will
not be written to the channel from the given buffer, then further attempts
to write to the channel will cause an unspecific runtime exception to be
thrown.
Otherwise this method works in the same manner as the AsynchronousByteChannel.write(ByteBuffer, Object, CompletionHandler)
method.
src
- The buffer from which bytes are to be retrievedtimeout
- The maximum time for the I/O operation to completeunit
- The time unit of the timeout
argumentattach
- The object to attach to the I/O operation; can be null
handler
- The handler for consuming the resultjava.nio.channels.WritePendingException
- If a write operation is already in progress on this channeljava.nio.channels.ShutdownChannelGroupException
- If the channel group has terminated<A> void write(java.nio.ByteBuffer[] srcs, int offset, int length, long timeout, java.util.concurrent.TimeUnit unit, A attach, java.nio.channels.CompletionHandler<java.lang.Long,? super A> handler)
handler
parameter is a completion
handler that is invoked when the write operation completes (or fails).
The result passed to the completion handler is the number of bytes written.
This method initiates a write of up to r bytes to this channel, where r is the total number of bytes remaining in the specified subsequence of the given buffer array, that is,
srcs[offset].remaining() + srcs[offset+1].remaining() + ... + srcs[offset+length-1].remaining()
at the moment that the write is attempted.
Suppose that a byte sequence of length n is written, where 0 < n <= r. Up to the first srcs[offset].remaining() bytes of this sequence are written from buffer srcs[offset], up to the next srcs[offset+1].remaining() bytes are written from buffer srcs[offset+1], and so forth, until the entire byte sequence is written. As many bytes as possible are written from each buffer, hence the final position of each updated buffer, except the last updated buffer, is guaranteed to be equal to that buffer's limit. The underlying operating system may impose a limit on the number of buffers that may be used in an I/O operation. Where the number of buffers (with bytes remaining), exceeds this limit, then the I/O operation is performed with the maximum number of buffers allowed by the operating system.
If a timeout is specified and the timeout elapses before the operation
completes then it completes with the exception InterruptedByTimeoutException
. Where a timeout occurs, and the
implementation cannot guarantee that bytes have not been written, or will
not be written to the channel from the given buffers, then further attempts
to write to the channel will cause an unspecific runtime exception to be
thrown.
srcs
- The buffers from which bytes are to be retrievedoffset
- The offset within the buffer array of the first buffer from which
bytes are to be retrieved; must be non-negative and no larger
than srcs.length
length
- The maximum number of buffers to be accessed; must be non-negative
and no larger than srcs.length - offset
timeout
- The maximum time for the I/O operation to completeunit
- The time unit of the timeout
argumentattach
- The object to attach to the I/O operation; can be null
handler
- The handler for consuming the resultjava.lang.IndexOutOfBoundsException
- If the pre-conditions for the offset
and length
parameter aren't metjava.nio.channels.WritePendingException
- If a write operation is already in progress on this channeljava.nio.channels.ShutdownChannelGroupException
- If the channel group has terminatedCopyright © 2010 - 2023 Adobe. All Rights Reserved