Class HandlerRemovingChannelPoolListener
- java.lang.Object
-
- software.amazon.awssdk.http.nio.netty.internal.HandlerRemovingChannelPoolListener
-
- All Implemented Interfaces:
ListenerInvokingChannelPool.ChannelPoolListener
public final class HandlerRemovingChannelPoolListener extends Object implements ListenerInvokingChannelPool.ChannelPoolListener
Removes any per-requestChannelHandlerfrom the pipeline when releasing it to the pool.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidchannelReleased(io.netty.channel.Channel channel)Called before aChannelis released by callingChannelPool.release(Channel)orChannelPool.release(Channel, Promise).static HandlerRemovingChannelPoolListenercreate()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.http.nio.netty.internal.ListenerInvokingChannelPool.ChannelPoolListener
channelAcquired
-
-
-
-
Method Detail
-
create
public static HandlerRemovingChannelPoolListener create()
-
channelReleased
public void channelReleased(io.netty.channel.Channel channel)
Description copied from interface:ListenerInvokingChannelPool.ChannelPoolListenerCalled before aChannelis released by callingChannelPool.release(Channel)orChannelPool.release(Channel, Promise).This method will be called by the
EventLoopof theChannel.- Specified by:
channelReleasedin interfaceListenerInvokingChannelPool.ChannelPoolListener
-
-