Uses of Interface
io.netty.channel.pool.ChannelPoolHandler
-
Packages that use ChannelPoolHandler Package Description io.netty.channel.pool Implementations and API forChannel
pools. -
-
Uses of ChannelPoolHandler in io.netty.channel.pool
Classes in io.netty.channel.pool that implement ChannelPoolHandler Modifier and Type Class Description class
AbstractChannelPoolHandler
A skeletalChannelPoolHandler
implementation.Methods in io.netty.channel.pool that return ChannelPoolHandler Modifier and Type Method Description protected ChannelPoolHandler
SimpleChannelPool. handler()
Returns theChannelPoolHandler
that will be notified for the different pool actions.Constructors in io.netty.channel.pool with parameters of type ChannelPoolHandler Constructor Description FixedChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler, int maxConnections)
Creates a new instance using theChannelHealthChecker.ACTIVE
.FixedChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler, int maxConnections, int maxPendingAcquires)
Creates a new instance using theChannelHealthChecker.ACTIVE
.FixedChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler, ChannelHealthChecker healthCheck, FixedChannelPool.AcquireTimeoutAction action, long acquireTimeoutMillis, int maxConnections, int maxPendingAcquires)
Creates a new instance.FixedChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler, ChannelHealthChecker healthCheck, FixedChannelPool.AcquireTimeoutAction action, long acquireTimeoutMillis, int maxConnections, int maxPendingAcquires, boolean releaseHealthCheck)
Creates a new instance.FixedChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler, ChannelHealthChecker healthCheck, FixedChannelPool.AcquireTimeoutAction action, long acquireTimeoutMillis, int maxConnections, int maxPendingAcquires, boolean releaseHealthCheck, boolean lastRecentUsed)
Creates a new instance.SimpleChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler)
Creates a new instance using theChannelHealthChecker.ACTIVE
.SimpleChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler, ChannelHealthChecker healthCheck)
Creates a new instance.SimpleChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler, ChannelHealthChecker healthCheck, boolean releaseHealthCheck)
Creates a new instance.SimpleChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler, ChannelHealthChecker healthCheck, boolean releaseHealthCheck, boolean lastRecentUsed)
Creates a new instance.
-