Example usage for io.netty.channel.nio NioEventLoopGroup subclass-usage

List of usage examples for io.netty.channel.nio NioEventLoopGroup subclass-usage

Introduction

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

Usage

From source file com.github.brandtg.switchboard.ManagedNioEventLoopGroup.java

public class ManagedNioEventLoopGroup extends NioEventLoopGroup implements Managed {
    @Override
    public void start() throws Exception {
        // NOP
    }

From source file jj.http.client.HttpClientNioEventLoopGroup.java

/**
 * @author jason
 *
 */
@Singleton
class HttpClientNioEventLoopGroup extends NioEventLoopGroup {

From source file jj.http.server.HttpServerNioEventLoopGroup.java

/**
 * @author jason
 *
 */
@Singleton
class HttpServerNioEventLoopGroup extends NioEventLoopGroup {

From source file org.apache.activemq.artemis.core.remoting.impl.netty.SharedNioEventLoopGroup.java

public class SharedNioEventLoopGroup extends NioEventLoopGroup {
    private static SharedNioEventLoopGroup instance;

    private final AtomicReference<ScheduledFuture<?>> shutdown = new AtomicReference<ScheduledFuture<?>>();
    private final AtomicLong nioChannelFactoryCount = new AtomicLong();
    private final Promise<?> terminationPromise = ImmediateEventExecutor.INSTANCE.newPromise();

From source file org.apache.activemq.core.remoting.impl.netty.SharedNioEventLoopGroup.java

/**
 * @author <a href="nmaurer@redhat.com">Norman Maurer</a>
 */
public class SharedNioEventLoopGroup extends NioEventLoopGroup {
    private static SharedNioEventLoopGroup instance;

From source file org.hornetq.core.remoting.impl.netty.SharedNioEventLoopGroup.java

/**
 * @author <a href="nmaurer@redhat.com">Norman Maurer</a>
 */
public class SharedNioEventLoopGroup extends NioEventLoopGroup {
    private static SharedNioEventLoopGroup instance;

From source file org.opendaylight.controller.config.yang.netty.threadgroup.NioEventLoopGroupCloseable.java

public class NioEventLoopGroupCloseable extends NioEventLoopGroup implements AutoCloseable {
    private NioEventLoopGroupCloseable(int threadCount) {
        super(threadCount);
    }

    private NioEventLoopGroupCloseable() {