Top Description Methods
io.netty.util.concurrent

public Interface GenericFutureListener<F extends Future<?>>

extends EventListener
Known Direct Subinterfaces
io.netty.util.concurrent.FutureListener, io.netty.util.concurrent.GenericProgressiveFutureListener
Known Direct Implementers
io.netty.util.concurrent.PromiseAggregator, io.netty.util.concurrent.PromiseNotifier
Imports
java.util.EventListener

Listens to the result of a Future. The result of the asynchronous operation is notified once this listener is added by calling Future#addListener(GenericFutureListener).

Method Summary

Modifier and TypeMethod and Description
public void
operationComplete(F
the source Future which called this callback
future
)

Invoked when the operation associated with the Future has been completed.

Method Detail

operationCompleteback to summary
public void operationComplete(F future) throws Exception

Invoked when the operation associated with the Future has been completed.

Parameters
future:F

the source Future which called this callback