Example usage for io.netty.util.concurrent FastThreadLocalThread subclass-usage

List of usage examples for io.netty.util.concurrent FastThreadLocalThread subclass-usage

Introduction

In this page you can find the example usage for io.netty.util.concurrent FastThreadLocalThread subclass-usage.

Usage

From source file io.advantageous.conekt.impl.ConektThread.java

/**
 * @author <a href="mailto:nmaurer@redhat.com">Norman Maurer</a>
 */
final class ConektThread extends FastThreadLocalThread {

    private final boolean worker;

From source file io.vertx.core.impl.VertxThread.java

/**
 * @author <a href="mailto:nmaurer@redhat.com">Norman Maurer</a>
 */
final class VertxThread extends FastThreadLocalThread {

    private final boolean worker;

From source file org.apache.bookkeeper.bookie.BookieThread.java

/**
 * Wrapper that wraps bookie threads.
 * Any common handing that we require for all bookie threads
 * should be implemented here
 */
public class BookieThread extends FastThreadLocalThread implements Thread.UncaughtExceptionHandler {

From source file org.apache.cassandra.net.IncomingTcpConnection.java

public class IncomingTcpConnection extends FastThreadLocalThread implements Closeable {
    private static final Logger logger = LoggerFactory.getLogger(IncomingTcpConnection.class);

    private static final int BUFFER_SIZE = Integer.getInteger(Config.PROPERTY_PREFIX + ".itc_buffer_size",
            1024 * 4);

From source file org.apache.cassandra.net.OutboundTcpConnection.java

public class OutboundTcpConnection extends FastThreadLocalThread {
    private static final Logger logger = LoggerFactory.getLogger(OutboundTcpConnection.class);

    private static final String PREFIX = Config.PROPERTY_PREFIX;

    /*