Package org.apache.mina.core.future
Interface ReadFuture
-
- All Superinterfaces:
IoFuture
- All Known Implementing Classes:
DefaultReadFuture
public interface ReadFuture extends IoFuture
AnIoFutureforasynchronous read requests.Example
IoSession session = ...; // useReadOperation must be enabled to use read operation. session.getConfig().setUseReadOperation(true); ReadFuture future = session.read(); // Wait until a message is received. future.awaitUninterruptibly(); try { Object message = future.getMessage(); } catch (Exception e) { ... }- Author:
- Apache MINA Project
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReadFutureaddListener(IoFutureListener<?> listener)Adds an eventlistenerwhich is notified when this future is completed.ReadFutureawait()Wait for the asynchronous operation to complete.ReadFutureawaitUninterruptibly()Wait for the asynchronous operation to complete uninterruptibly.ThrowablegetException()ObjectgetMessage()Get the read message.booleanisClosed()booleanisRead()ReadFutureremoveListener(IoFutureListener<?> listener)Removes an existing eventlistenerso it won't be notified when the future is completed.voidsetClosed()Sets the associatedIoSessionis closed.voidsetException(Throwable cause)Sets the cause of the read failure, and notifies all threads waiting for this future.voidsetRead(Object message)Sets the message is written, and notifies all threads waiting for this future.-
Methods inherited from interface org.apache.mina.core.future.IoFuture
await, await, awaitUninterruptibly, awaitUninterruptibly, getSession, isDone, join, join
-
-
-
-
Method Detail
-
getMessage
Object getMessage()
Get the read message.- Returns:
- the received message. It returns
nullif this future is not ready or the associatedIoSessionhas been closed.
-
isRead
boolean isRead()
- Returns:
trueif a message was received successfully.
-
isClosed
boolean isClosed()
- Returns:
trueif theIoSessionassociated with this future has been closed.
-
getException
Throwable getException()
- Returns:
- the cause of the read failure if and only if the read
operation has failed due to an
Exception. Otherwise,nullis returned.
-
setRead
void setRead(Object message)
Sets the message is written, and notifies all threads waiting for this future. This method is invoked by MINA internally. Please do not call this method directly.- Parameters:
message- The received message to store in this future
-
setClosed
void setClosed()
Sets the associatedIoSessionis closed. This method is invoked by MINA internally. Please do not call this method directly.
-
setException
void setException(Throwable cause)
Sets the cause of the read failure, and notifies all threads waiting for this future. This method is invoked by MINA internally. Please do not call this method directly.- Parameters:
cause- The exception to store in the Future instance
-
await
ReadFuture await() throws InterruptedException
Wait for the asynchronous operation to complete. The attached listeners will be notified when the operation is completed.- Specified by:
awaitin interfaceIoFuture- Returns:
- The instance of IoFuture that we are waiting for
- Throws:
InterruptedException- If the thread is interrupted while waiting
-
awaitUninterruptibly
ReadFuture awaitUninterruptibly()
Wait for the asynchronous operation to complete uninterruptibly. The attached listeners will be notified when the operation is completed.- Specified by:
awaitUninterruptiblyin interfaceIoFuture- Returns:
- the current IoFuture
-
addListener
ReadFuture addListener(IoFutureListener<?> listener)
Adds an eventlistenerwhich is notified when this future is completed. If the listener is added after the completion, the listener is directly notified.- Specified by:
addListenerin interfaceIoFuture- Parameters:
listener- The listener to add- Returns:
- the current IoFuture
-
removeListener
ReadFuture removeListener(IoFutureListener<?> listener)
Removes an existing eventlistenerso it won't be notified when the future is completed.- Specified by:
removeListenerin interfaceIoFuture- Parameters:
listener- The listener to remove- Returns:
- the current IoFuture
-
-