Class SimpleChannelPool

java.lang.Object
io.netty.channel.pool.SimpleChannelPool
All Implemented Interfaces:
ChannelPool, Closeable, AutoCloseable
Direct Known Subclasses:
FixedChannelPool

public class SimpleChannelPool extends Object implements ChannelPool
Simple ChannelPool implementation which will create new Channels if someone tries to acquire a Channel but none is in the pool atm. No limit on the maximal concurrent Channels is enforced. This implementation uses LIFO order for Channels in the ChannelPool.