public abstract class DetachableStreamSourceChannel extends Object implements StreamSourceChannel
| Modifier and Type | Field and Description | 
|---|---|
protected ChannelListener.SimpleSetter<DetachableStreamSourceChannel> | 
closeSetter  | 
protected StreamSourceChannel | 
delegate  | 
protected ChannelListener.SimpleSetter<DetachableStreamSourceChannel> | 
readSetter  | 
EMPTY| Constructor and Description | 
|---|
DetachableStreamSourceChannel(StreamSourceChannel delegate)  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
awaitReadable()
Block until this channel becomes readable again. 
 | 
void | 
awaitReadable(long time,
             TimeUnit timeUnit)
Block until this channel becomes readable again, or until the timeout expires. 
 | 
void | 
close()
Close this channel. 
 | 
ChannelListener.Setter<? extends StreamSourceChannel> | 
getCloseSetter()
Get the setter which can be used to change the close listener for this channel. 
 | 
XnioIoThread | 
getIoThread()
Get the I/O thread associated with this channel. 
 | 
<T> T | 
getOption(Option<T> option)
Get the value of a channel option. 
 | 
ChannelListener.Setter<? extends StreamSourceChannel> | 
getReadSetter()
Get the setter which can be used to change the read listener for this channel. 
 | 
XnioExecutor | 
getReadThread()
Get the read thread for this channel. 
 | 
XnioWorker | 
getWorker()
Get the worker for this channel. 
 | 
protected abstract boolean | 
isFinished()  | 
boolean | 
isOpen()  | 
boolean | 
isReadResumed()
Determine whether reads are resumed. 
 | 
int | 
read(ByteBuffer dst)  | 
long | 
read(ByteBuffer[] dsts)  | 
long | 
read(ByteBuffer[] dsts,
    int offset,
    int length)  | 
void | 
resumeReads()
Resume reads on this channel. 
 | 
<T> T | 
setOption(Option<T> option,
         T value)
Set an option for this channel. 
 | 
void | 
shutdownReads()
Places this readable channel at "end of stream". 
 | 
boolean | 
supportsOption(Option<?> option)
Determine whether an option is supported on this channel. 
 | 
void | 
suspendReads()
Suspend further read notifications on this channel. 
 | 
long | 
transferTo(long count,
          ByteBuffer throughBuffer,
          StreamSinkChannel target)
Transfers bytes into the given channel target. 
 | 
long | 
transferTo(long position,
          long count,
          FileChannel target)
Transfers bytes into the given file from this channel. 
 | 
void | 
wakeupReads()
Resume reads on this channel, and force the read listener to be triggered even if the
 channel isn't actually readable. | 
protected final StreamSourceChannel delegate
protected ChannelListener.SimpleSetter<DetachableStreamSourceChannel> readSetter
protected ChannelListener.SimpleSetter<DetachableStreamSourceChannel> closeSetter
public DetachableStreamSourceChannel(StreamSourceChannel delegate)
protected abstract boolean isFinished()
public void resumeReads()
SuspendableReadChannelresumeReads in interface SuspendableReadChannelpublic long transferTo(long position,
                       long count,
                       FileChannel target)
                throws IOException
StreamSourceChannelFileChannel.transferFrom(ReadableByteChannel, long, long)
 may provide a performance advantage on some platforms.
 
 If the current thread is interrupted when this method is called, it may throw a InterruptedIOException;
 however, if this exception is thrown, the InterruptedIOException.bytesTransferred field is
 guaranteed to be 0.
transferTo in interface StreamSourceChannelposition - the position within the file from which the transfer is to begincount - the number of bytes to be transferredtarget - the file to write toIOException - if an I/O error occurspublic void awaitReadable()
                   throws IOException
SuspendableReadChannelawaitReadable in interface SuspendableReadChannelInterruptedIOException - if the operation is interrupted; the thread's interrupt flag will be set as wellIOException - if an I/O error occurspublic void suspendReads()
SuspendableReadChannelsuspendReads in interface SuspendableReadChannelpublic long transferTo(long count,
                       ByteBuffer throughBuffer,
                       StreamSinkChannel target)
                throws IOException
StreamSourceChannelthroughBuffer parameter's buffer
 space.  On entry, throughBuffer will be cleared.  On exit, the buffer will be
 flipped for emptying, and may possibly be empty or may contain data.  If this method returns a value less than
 count, then the remaining data in throughBuffer may contain data read from this channel which must
 be written to target to complete the operation.  Note that using a direct buffer may provide an
 intermediate performance gain on platforms without zero-copy facilities.
 
 If the current thread is interrupted when this method is called, it may throw a InterruptedIOException;
 however, if this exception is thrown, the InterruptedIOException.bytesTransferred field is
 guaranteed to be 0.
 Note that the return value is the amount of data that was actually transferred to the StreamSinkChannel.
 The actual amount of data read could be larger than this, and can be calculated by adding the return value and
 the amount of data left in throughBuffer.
transferTo in interface StreamSourceChannelcount - the number of bytes to be transferredthroughBuffer - the buffer to copy through.target - the destination to write toIOException - if an I/O error occurspublic XnioWorker getWorker()
CloseableChannelgetWorker in interface CloseableChannelpublic boolean isReadResumed()
SuspendableReadChannelisReadResumed in interface SuspendableReadChanneltrue if reads are resumed, false if reads are suspendedpublic <T> T setOption(Option<T> option, T value) throws IllegalArgumentException, IOException
ConfigurablesetOption in interface ConfigurableT - the type of the option valueoption - the option to setvalue - the value of the option to setIllegalArgumentException - if the value is not acceptable for this optionIOException - if an I/O error occurred when modifying the optionpublic boolean supportsOption(Option<?> option)
ConfigurablesupportsOption in interface Configurableoption - the optiontrue if it is supportedpublic void shutdownReads()
                   throws IOException
SuspendableReadChannelCloseableChannel.close() to be called automatically.shutdownReads in interface SuspendableReadChannelIOException - if an I/O error occurspublic ChannelListener.Setter<? extends StreamSourceChannel> getReadSetter()
StreamSourceChannelgetReadSetter in interface StreamSourceChannelgetReadSetter in interface SuspendableReadChannelpublic long read(ByteBuffer[] dsts) throws IOException
read in interface ScatteringByteChannelIOExceptionpublic long read(ByteBuffer[] dsts, int offset, int length) throws IOException
read in interface ScatteringByteChannelIOExceptionpublic void wakeupReads()
SuspendableReadChannelResume reads on this channel, and force the read listener to be triggered even if the
 channel isn't actually readable.wakeupReads in interface SuspendableReadChannelpublic XnioExecutor getReadThread()
SuspendableReadChannelgetReadThread in interface SuspendableReadChannelnull if none is configured or availablepublic void awaitReadable(long time,
                          TimeUnit timeUnit)
                   throws IOException
SuspendableReadChannelawaitReadable in interface SuspendableReadChanneltime - the time to waittimeUnit - the time unitInterruptedIOException - if the operation is interrupted; the thread's interrupt flag will be set as wellIOException - if an I/O error occurspublic ChannelListener.Setter<? extends StreamSourceChannel> getCloseSetter()
StreamSourceChannelgetCloseSetter in interface CloseableChannelgetCloseSetter in interface StreamSourceChannelgetCloseSetter in interface SuspendableReadChannelpublic void close()
           throws IOException
CloseableChannelclose in interface Closeableclose in interface AutoCloseableclose in interface Channelclose in interface InterruptibleChannelclose in interface CloseableChannelIOException - if the close failedpublic <T> T getOption(Option<T> option) throws IOException
ConfigurablegetOption in interface ConfigurableT - the type of the option valueoption - the option to getnull if it is not setIOException - if an I/O error occurred when reading the optionpublic int read(ByteBuffer dst) throws IOException
read in interface ReadableByteChannelIOExceptionpublic XnioIoThread getIoThread()
CloseableChannelgetIoThread in interface CloseableChannelCopyright © 2016 JBoss by Red Hat. All rights reserved.