Interface ListenerInvokingChannelPool.ChannelPoolListener
-
- All Known Implementing Classes:
AutoReadDisableChannelPoolListener,AutoReadEnableChannelPoolListener,HandlerRemovingChannelPoolListener,InUseTrackingChannelPoolListener
- Enclosing class:
- ListenerInvokingChannelPool
public static interface ListenerInvokingChannelPool.ChannelPoolListenerListener which is called for various actions performed on aSdkChannelPool. All listener events are guaranteed to be invoked as part of theChannel'sEventLoop.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voidchannelAcquired(io.netty.channel.Channel channel)Called after aChannelwas acquired by callingChannelPool.acquire()orChannelPool.acquire(Promise).default voidchannelReleased(io.netty.channel.Channel channel)Called before aChannelis released by callingChannelPool.release(Channel)orChannelPool.release(Channel, Promise).
-
-
-
Method Detail
-
channelAcquired
default void channelAcquired(io.netty.channel.Channel channel)
Called after aChannelwas acquired by callingChannelPool.acquire()orChannelPool.acquire(Promise).This method will be called by the
EventLoopof theChannel.
-
channelReleased
default void channelReleased(io.netty.channel.Channel channel)
Called before aChannelis released by callingChannelPool.release(Channel)orChannelPool.release(Channel, Promise).This method will be called by the
EventLoopof theChannel.
-
-