Example usage for io.netty.channel.pool SimpleChannelPool subclass-usage

List of usage examples for io.netty.channel.pool SimpleChannelPool subclass-usage

Introduction

In this page you can find the example usage for io.netty.channel.pool SimpleChannelPool subclass-usage.

Usage

From source file com.ibasco.agql.core.transport.pool.ConnectionlessChannelPool.java

/**
 * A channel pool that creates connection less {@link io.netty.channel.Channel} instances
 */
public class ConnectionlessChannelPool extends SimpleChannelPool {
    public ConnectionlessChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler) {
        super(bootstrap, handler);

From source file org.vootoo.client.netty.connect.SimpleConnectionPool.java

/**
 * @author chenlb on 2015-06-12 09:55.
 */
public class SimpleConnectionPool extends io.netty.channel.pool.SimpleChannelPool implements ConnectionPool {
    private static final Logger logger = LoggerFactory.getLogger(SimpleConnectionPool.class);