Package io.netty.util.concurrent
Interface GenericFutureListener<F extends Future<?>>
-
- All Superinterfaces:
EventListener
- All Known Subinterfaces:
FutureListener<V>,GenericProgressiveFutureListener<F>
- All Known Implementing Classes:
PromiseAggregator,PromiseNotifier,UnaryPromiseNotifier
public interface GenericFutureListener<F extends Future<?>> extends EventListener
Listens to the result of aFuture. The result of the asynchronous operation is notified once this listener is added by callingFuture.addListener(GenericFutureListener).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidoperationComplete(F future)Invoked when the operation associated with theFuturehas been completed.
-