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

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

Introduction

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

Usage

From source file ratpack.http.client.internal.CleanClosingFixedChannelPool.java

public class CleanClosingFixedChannelPool extends FixedChannelPool {

    public CleanClosingFixedChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler, int maxConnections,
            int maxPendingAcquires) {
        super(bootstrap, handler, maxConnections, maxPendingAcquires);
    }