List of usage examples for org.apache.thrift.server TServer subclass-usage
From source file com.bigdata.dastor.thrift.server.CustomTThreadPoolServer.java
/**
* Slightly modified version of the Apache Thrift TThreadPoolServer.
*
* This allows passing an executor so you have more control over the actual
* behaviour of the tasks being run.
*
From source file com.icloud.framework.thrift.server.AbstractNonblockingServer.java
/** * Provides common methods and classes used by nonblocking TServer * implementations. */ public abstract class AbstractNonblockingServer extends TServer { protected final Logger LOGGER = LoggerFactory.getLogger(getClass().getName());
From source file com.icloud.framework.thrift.server.CustomTThreadPoolServer.java
/**
* Slightly modified version of the Apache Thrift TThreadPoolServer.
*
* This allows passing an executor so you have more control over the actual
* behaviour of the tasks being run.
*
From source file com.icloud.framework.thrift.standardserver.CustomTThreadPoolServer.java
/**
* Slightly modified version of the Apache Thrift TThreadPoolServer.
*
* This allows passing an executor so you have more control over the actual
* behaviour of the tasks being run.
*
From source file com.pinterest.quasar.thrift.TFiberServer.java
/**
* A Thrift server that uses lightweight threads (Fibers) to process Thrift requests.
*
* <h2>Overview</h2>
*
* TFiberServer is a {@link TServer} that makes use of Quasar's {@link Fiber}s. Fibers are
From source file com.sleepycat.server.MockServer.java
public class MockServer extends TServer { public MockServer() { super(new TServer.Args(null)); }
From source file com.splout.db.dnode.CustomTThreadPoolServer.java
/** * TThreadPoolServer (approximately) patched with: * https://issues.apache.org/jira/secure/attachment/12444333/THRIFT-692.patch.untested.txt */ public class CustomTThreadPoolServer extends TServer {
From source file nu.ted.thrift.TThreadPoolServer.java
/** * Trimmed down version of Apache's TThreadPoolServer, used */ public class TThreadPoolServer extends TServer { private static final Logger LOGGER = LoggerFactory.getLogger(TThreadPoolServer.class.getName());
From source file org.apache.cassandra.thrift.CustomTThreadPoolServer.java
/**
* Slightly modified version of the Apache Thrift TThreadPoolServer.
* <p/>
* This allows passing an executor so you have more control over the actual
* behaviour of the tasks being run.
* <p/>
From source file org.apache.hadoop.hbase.thrift.TBoundedThreadPoolServer.java
/** * A bounded thread pool server customized for HBase. */ @InterfaceAudience.Private public class TBoundedThreadPoolServer extends TServer {