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:
AbstractEpollStreamChannel.SpliceInChannelTask,ChannelPromiseAggregator,ChannelPromiseNotifier,DefaultHttp2ConnectionEncoder.FlowControlledBase,DefaultHttp2ConnectionEncoder.FlowControlledData,DefaultHttp2ConnectionEncoder.FlowControlledHeaders,DelegatingChannelPromiseNotifier,FixedChannelPool.AcquireListener,FixedChannelPool.AcquireTask,Http2ConnectionHandler.ClosingChannelFutureListener,PromiseAggregator,PromiseNotifier,ReferenceCountedOpenSslContext.AsyncPrivateKeyMethod.ResultCallbackListener,SpdySessionHandler.ClosingChannelFutureListener,UnaryPromiseNotifier,WriteTimeoutHandler.WriteTimeoutTask
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.