public class BlockingReadableByteChannel extends Object implements ScatteringByteChannel
StreamSourceChannel. Read operations will block until some data may be transferred.
Once any amount of data is read, the operation will return. If a read timeout is specified, then the read methods
will throw a ReadTimeoutException if the timeout expires without reading any data.| Constructor and Description |
|---|
BlockingReadableByteChannel(StreamSourceChannel delegate)
Construct a new instance.
|
BlockingReadableByteChannel(StreamSourceChannel delegate,
long readTimeout,
TimeUnit readTimeoutUnit)
Construct a new instance.
|
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
boolean |
isOpen() |
int |
read(ByteBuffer dst)
Perform a blocking read operation.
|
long |
read(ByteBuffer[] dsts)
Perform a blocking, scattering read operation.
|
long |
read(ByteBuffer[] dsts,
int offset,
int length)
Perform a blocking, scattering read operation.
|
void |
setReadTimeout(long readTimeout,
TimeUnit readTimeoutUnit)
Set the read timeout.
|
public BlockingReadableByteChannel(StreamSourceChannel delegate)
delegate - the channel to forward I/O operations topublic BlockingReadableByteChannel(StreamSourceChannel delegate, long readTimeout, TimeUnit readTimeoutUnit)
delegate - the channel to forward I/O operations toreadTimeout - the read timeoutreadTimeoutUnit - the read timeout unitpublic void setReadTimeout(long readTimeout,
TimeUnit readTimeoutUnit)
readTimeout - the read timeoutreadTimeoutUnit - the read timeout unitpublic long read(ByteBuffer[] dsts, int offset, int length) throws IOException
read in interface ScatteringByteChanneldsts - the destination buffersoffset - the offset into the destination buffer arraylength - the number of buffers to read intoIOException - if an I/O error occurspublic long read(ByteBuffer[] dsts) throws IOException
read in interface ScatteringByteChanneldsts - the destination buffersIOException - if an I/O error occurspublic int read(ByteBuffer dst) throws IOException
read in interface ReadableByteChanneldst - the destination bufferIOException - if an I/O error occurspublic void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableclose in interface ChannelIOExceptionCopyright © 2018 JBoss by Red Hat. All rights reserved.