Package | Description |
---|---|
org.apache.mina.api |
Base API for the MINA library.
|
org.apache.mina.util |
Various utilities.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractIoFutureListener<V>
Convenient base implementation for
IoFutureListener . if something wrong happen the exception is rethrown,
which will produce an exception caught event for the session |
Modifier and Type | Method and Description |
---|---|
IoFuture<V> |
IoFuture.register(IoFutureListener<V> listener)
Register a listener to asynchronously receive the results of the
future computation.
|
Modifier and Type | Method and Description |
---|---|
IoFuture<V> |
AbstractIoFuture.register(IoFutureListener<V> listener)
Register a listener to asynchronously receive the results of the
future computation.
|
protected void |
AbstractIoFuture.scheduleException(IoFutureListener<V> listener,
Throwable throwable)
Default implementation to call a listener's
exception(Throwable) method. |
protected void |
AbstractIoFuture.scheduleResult(IoFutureListener<V> listener,
V result)
Default implementation to call a listener's
completed(Object) method. |
Copyright © 2009–2013 Apache MINA Project. All rights reserved.