Package io.netty.util.concurrent
Interface GenericFutureListener<F extends Future<?>>
- All Superinterfaces:
EventListener
- All Known Subinterfaces:
ChannelFutureListener,ChannelGroupFutureListener,ChannelProgressiveFutureListener,FutureListener<V>,GenericProgressiveFutureListener<F>
- All Known Implementing Classes:
ChannelPromiseAggregator,ChannelPromiseNotifier,DefaultHttp2ConnectionEncoder.FlowControlledBase,DelegatingChannelPromiseNotifier,PromiseAggregator,PromiseNotifier,UnaryPromiseNotifier
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 TypeMethodDescriptionvoidoperationComplete(F future) Invoked when the operation associated with theFuturehas been completed.