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

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

Introduction

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

Usage

From source file com.eucalyptus.util.async.AsyncRequestChannelPoolMap.java

/**
 *
 */
class AsyncRequestChannelPoolMap
        extends AbstractChannelPoolMap<AsyncRequestChannelPoolMap.ChannelPoolKey, SimpleChannelPool> {

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

/**
 * A default {@link ChannelPoolMap} implementation that use a {@link SimpleChannelPool}
 */
public class DefaultChannelPoolMap<K, P extends ChannelPool> extends AbstractChannelPoolMap<K, P> {

    private Bootstrap bootstrap;

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

abstract class HttpChannelPoolMap extends AbstractChannelPoolMap<HttpChannelKey, ChannelPool> {

}