本文整理汇总了Java中org.apache.thrift.server.TSimpleServer类的典型用法代码示例。如果您正苦于以下问题:Java TSimpleServer类的具体用法?Java TSimpleServer怎么用?Java TSimpleServer使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TSimpleServer类属于org.apache.thrift.server包,在下文中一共展示了TSimpleServer类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: startServer
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
public void startServer() {
try {
logger.info("TSimpleServer start ....");
// TMultiplexedProcessor
TMultiplexedProcessor processor = new TMultiplexedProcessor();
processor.registerProcessor("Algorithm",
new AlgorithmService.Processor<>(new AlgorithmServiceImpl()));
TServerSocket serverTransport = new TServerSocket(SERVER_PORT);
TServer.Args args = new TServer.Args(serverTransport);
args.processor(processor);
args.protocolFactory(new TBinaryProtocol.Factory());
// args.protocolFactory(new TJSONProtocol.Factory());
TServer server = new TSimpleServer(args);
server.serve();
} catch (Exception e) {
logger.error("Server start error!!!");
e.printStackTrace();
}
}
开发者ID:kaichao,项目名称:algorithm.annotation,代码行数:22,代码来源:SimpleBackendServer.java
示例2: startServer2
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
public void startServer2() throws Exception
{
AwesomeService.Processor<AwesomeService.Iface> processor = new AwesomeService.Processor<>(referenceServer);
TServerTransport serverTransport = new TServerSocket(9090);
TServer server = new TSimpleServer(new TSimpleServer.Args(serverTransport).processor(processor));
ServerRunner serverRunner = new ServerRunner(server);
Thread serverThread = new Thread(serverRunner);
serverThread.start();
logger.info("Started binary interface");
joinMethods.add(() -> {
try {
serverThread.join();
} catch (InterruptedException ignored) {
}
});
}
开发者ID:coveord,项目名称:Blitz-2015,代码行数:20,代码来源:ReferenceMain.java
示例3: setUp
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
@Before
public void setUp() throws Exception {
Log.setLog(new NoLogging());
rc = copyResourceTo("/pvdrc", temp.getRoot());
copyResourceTo("/test.thrift", temp.getRoot());
impl = Mockito.mock(MyService.Iface.class);
TServerSocket transport = new TServerSocket(0);
server = new TSimpleServer(
new TServer.Args(transport)
.protocolFactory(new TBinaryProtocol.Factory())
.processor(new MyService.Processor<>(impl)));
ExecutorService executor = Executors.newSingleThreadExecutor();
executor.submit(server::serve);
Thread.sleep(1);
port = transport.getServerSocket().getLocalPort();
exitCode = 0;
rpc = new RPC(console.tty()) {
@Override
protected void exit(int i) {
exitCode = i;
}
};
}
开发者ID:morimekta,项目名称:providence,代码行数:28,代码来源:RPCThriftSocketTest.java
示例4: setUpServer
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
@BeforeClass
public static void setUpServer() throws Exception {
Awaitility.setDefaultPollDelay(2, TimeUnit.MILLISECONDS);
port = findFreePort();
impl = Mockito.mock(Iface.class);
TServerSocket transport = new TServerSocket(port);
server = new TSimpleServer(
new TServer.Args(transport)
.protocolFactory(new TBinaryProtocol.Factory())
.processor(new Processor<>(impl)));
executor = Executors.newSingleThreadExecutor();
executor.submit(server::serve);
serializer = new BinarySerializer();
address = new InetSocketAddress("localhost", port);
}
开发者ID:morimekta,项目名称:providence,代码行数:18,代码来源:SocketClientHandlerTest.java
示例5: startSimpleServer
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
private static TServer startSimpleServer(final TServerTransport transport, final TProcessor processor,
Properties properties) throws Exception {
TServer.AbstractServerArgs<?> serverArgs;
if (properties == null) {
serverArgs = new TServer.Args(transport).processor(processor);
} else {
serverArgs = ThriftUtils.getServerArgs(transport, properties).processor(processor);
}
final TServer server = new TSimpleServer(serverArgs);
new Thread(new Runnable() {
@Override
public void run() {
server.serve();
}
}).start();
return server;
}
开发者ID:ezbake,项目名称:ezbake-common-java,代码行数:21,代码来源:ThriftUtils.java
示例6: simpleServer
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
public static SyncEchoTestServer<TSimpleServer> simpleServer(final TestEnvironment environment)
throws TTransportException {
TSimpleServer server = new TSimpleServer(new TSimpleServer.Args(new TServerSocket(environment.getPort()))
.processor(getProcessor()).inputProtocolFactory(environment.getProtocolFactory())
.outputProtocolFactory(environment.getProtocolFactory()));
return new SyncEchoTestServer<TSimpleServer>(server, environment) {
@Override
public SyncEchoTestClient getSynchronousClient() throws TTransportException {
return new SyncEchoTestClient.Client(environment);
}
@Override
public AsyncEchoTestClient getAsynchronousClient() throws IOException {
return new AsyncEchoTestClient.Client(environment);
}
};
}
开发者ID:naver,项目名称:pinpoint,代码行数:18,代码来源:SyncEchoTestServer.java
示例7: run
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
public int run(String[] args) throws Exception
{
Configuration conf = getConf();
int port = conf.getInt("wmr.server.bind.port", 50100);
SubmissionDatabase.connect(conf);
JobServiceHandler service = new JobServiceHandler(new Configuration());
JobService.Processor processor = new JobService.Processor(service);
TServerTransport transport = new TServerSocket(port);
TServer server = new TSimpleServer(new Args(transport).processor(processor));
server.serve();
return 0;
}
开发者ID:benguillet,项目名称:wmr-backend,代码行数:17,代码来源:ThriftServer.java
示例8: startServer
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
@Override
public void startServer(final TProcessor processor, final TProtocolFactory protoFactory) throws Exception {
serverThread = new Thread() {
public void run() {
try {
// Transport
TServerSocket socket = new TServerSocket(PORT);
TTransportFactory factory = new TSaslServerTransport.Factory(
WRAPPED_MECHANISM, SERVICE, HOST, WRAPPED_PROPS,
new TestSaslCallbackHandler(PASSWORD));
server = new TSimpleServer(new Args(socket).processor(processor).transportFactory(factory).protocolFactory(protoFactory));
// Run it
LOGGER.debug("Starting the server on port {}", PORT);
server.serve();
} catch (Exception e) {
e.printStackTrace();
fail();
}
}
};
serverThread.start();
Thread.sleep(1000);
}
开发者ID:YinYanfei,项目名称:CadalWorkspace,代码行数:26,代码来源:TestTSaslTransports.java
示例9: testProcessor
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
private static int testProcessor(TProcessor processor, List<ToIntFunction<HostAndPort>> clients)
throws Exception
{
try (TServerSocket serverTransport = new TServerSocket(0)) {
TProtocolFactory protocolFactory = new Factory();
TTransportFactory transportFactory = new TFramedTransport.Factory();
TServer server = new TSimpleServer(new Args(serverTransport)
.protocolFactory(protocolFactory)
.transportFactory(transportFactory)
.processor(processor));
Thread serverThread = new Thread(server::serve);
try {
serverThread.start();
int localPort = serverTransport.getServerSocket().getLocalPort();
HostAndPort address = HostAndPort.fromParts("localhost", localPort);
int sum = 0;
for (ToIntFunction<HostAndPort> client : clients) {
sum += client.applyAsInt(address);
}
return sum;
}
finally {
server.stop();
serverThread.interrupt();
}
}
}
开发者ID:airlift,项目名称:drift,代码行数:31,代码来源:TestApacheThriftMethodInvoker.java
示例10: testProcessor
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
private static int testProcessor(TProcessor processor, List<ToIntFunction<HostAndPort>> clients)
throws Exception
{
try (TServerSocket serverTransport = new TServerSocket(0)) {
TProtocolFactory protocolFactory = new TBinaryProtocol.Factory();
TTransportFactory transportFactory = new TFramedTransport.Factory();
TServer server = new TSimpleServer(new Args(serverTransport)
.protocolFactory(protocolFactory)
.transportFactory(transportFactory)
.processor(processor));
Thread serverThread = new Thread(server::serve);
try {
serverThread.start();
int localPort = serverTransport.getServerSocket().getLocalPort();
HostAndPort address = HostAndPort.fromParts("localhost", localPort);
int sum = 0;
for (ToIntFunction<HostAndPort> client : clients) {
sum += client.applyAsInt(address);
}
return sum;
}
finally {
server.stop();
serverThread.interrupt();
}
}
}
开发者ID:airlift,项目名称:drift,代码行数:31,代码来源:TestDriftNettyMethodInvoker.java
示例11: secure
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
private void secure(Asker.Processor processor) {
try {
/*
* Use TSSLTransportParameters to setup the required SSL parameters. In this example
* we are setting the keystore and the keystore password. Other things like algorithms,
* cipher suites, client auth etc can be set.
*/
TSSLTransportFactory.TSSLTransportParameters params = new TSSLTransportFactory.TSSLTransportParameters();
// The Keystore contains the private key
params.setKeyStore(keyStore, keyPass, null, null);
/*
* Use any of the TSSLTransportFactory to get a server transport with the appropriate
* SSL configuration. You can use the default settings if properties are set in the command line.
* Ex: -Djavax.net.ssl.keyStore=.keystore and -Djavax.net.ssl.keyStorePassword=thrift
*
* Note: You need not explicitly call open(). The underlying server socket is bound on return
* from the factory class.
*/
TServerTransport serverTransport = TSSLTransportFactory.getServerSocket(port, 0, null, params);
TServer server = new TSimpleServer(new Args(serverTransport).processor(processor));
// Use this for a multi threaded server
// TServer server = new TThreadPoolServer(new TThreadPoolServer.Args(serverTransport).processor(processor));
System.out.println("Starting the secure server...");
server.serve();
} catch (Exception e) {
e.printStackTrace();
}
}
开发者ID:altiplanogao,项目名称:rpc-comparison,代码行数:32,代码来源:SecureAskerServer.java
示例12: startExtension
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
/**
* Start extension by communicating with osquery core and starting thrift
* server
*
* @param name
* name of extension
* @param version
* version of extension
* @param sdkVersion
* version of the osquery SDK used to build this extension
* @param minSdkVersion
* minimum version of the osquery SDK that you can use
* @throws IOException
* @throws ExtensionException
*/
public void startExtension(String name, String version, String sdkVersion, String minSdkVersion)
throws IOException, ExtensionException {
ExtensionManager.Client client = new ClientManager(EXTENSION_SOCKET).getClient();
InternalExtensionInfo info = new InternalExtensionInfo(name, version, sdkVersion, minSdkVersion);
try {
ExtensionStatus status = client.registerExtension(info, registry);
if (status.getCode() == 0) {
this.uuid = status.uuid;
Processor<PluginManager> processor = new Processor<PluginManager>(this);
String serverSocketPath = EXTENSION_SOCKET + "." + String.valueOf(uuid);
File socketFile = new File(serverSocketPath);
if (socketFile.exists()) {
socketFile.delete();
}
AFUNIXServerSocket socket = AFUNIXServerSocket.bindOn(new AFUNIXSocketAddress(socketFile));
socketFile.setExecutable(true, false);
socketFile.setWritable(true, false);
socketFile.setReadable(true, false);
TServerSocket transport = new TServerSocket(socket);
TTransportFactory transportFactory = new TTransportFactory();
TProtocolFactory protocolFactory = new TBinaryProtocol.Factory();
TServer server = new TSimpleServer(new Args(transport).processor(processor)
.transportFactory(transportFactory).protocolFactory(protocolFactory));
// Run it
System.out.println("Starting the server...");
server.serve();
} else {
throw new ExtensionException(1, status.getMessage(), uuid);
}
} catch (TException e) {
throw new ExtensionException(1, "Could not connect to socket", uuid);
}
}
开发者ID:melastmohican,项目名称:osquery-java,代码行数:50,代码来源:PluginManager.java
示例13: initServer
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
protected void initServer(TServerTransport serverTransport) {
ThriftServerConfiguration configuration = getThriftServerConfiguration();
server = new TSimpleServer(configuration.getServerArgsAspect().TServerArgsAspect(
new TServer.Args(serverTransport).transportFactory(configuration.getTransportFactory())
.protocolFactory(configuration.getProtocolFactory()).processor(getProcessor())));
if (configuration.getServerEventHandler() != null)
server.setServerEventHandler(configuration.getServerEventHandler());
}
开发者ID:venwyhk,项目名称:ikasoa,代码行数:9,代码来源:SimpleThriftServerImpl.java
示例14: spawnServer
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
@Before
public void spawnServer() throws TException
{
mockedServer = Mockito.mock(AwesomeService.Iface.class);
Mockito.when(mockedServer.getData(Mockito.any(Request.class))).thenReturn(new Response());
AwesomeService.Processor<AwesomeService.Iface> processor = new AwesomeService.Processor<>(mockedServer);
TServerTransport serverTransport = new TServerSocket(SERVER_PORT);
final TServer server = new TSimpleServer(new TSimpleServer.Args(serverTransport).processor(processor));
serverRunner = new ServerRunner(server);
serverThread = new Thread(serverRunner);
serverThread.setDaemon(true);
serverThread.start();
}
开发者ID:coveord,项目名称:Blitz-2015,代码行数:16,代码来源:AnalyticsTest.java
示例15: secure
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
public static void secure(Calculator.Processor<CalculatorHandler> processor) throws Exception {
/*
* Use TSSLTransportParameters to setup the required SSL parameters. In this
* example we are setting the keystore and the keystore password. Other things
* like algorithms, cipher suites, client auth etc can be set.
*/
TSSLTransportParameters params = new TSSLTransportParameters();
// The Keystore contains the private key
params.setKeyStore("../../lib/java/test/.keystore", "thrift", null, null);
/*
* Use any of the TSSLTransportFactory to get a server transport with the
* appropriate SSL configuration. You can use the default settings if properties
* are set in the command line. Ex: -Djavax.net.ssl.keyStore=.keystore and
* -Djavax.net.ssl.keyStorePassword=thrift
*
* Note: You need not explicitly call open(). The underlying server socket is
* bound on return from the factory class.
*/
TServerTransport serverTransport = TSSLTransportFactory.getServerSocket(9091, 0, null, params);
TServer server = new TSimpleServer(new Args(serverTransport).processor(processor));
// Use this for a multi threaded server
// TServer server = new TThreadPoolServer(new
// TThreadPoolServer.Args(serverTransport).processor(processor));
System.out.println("Starting the secure server...");
server.serve();
}
开发者ID:haogrgr,项目名称:haogrgr-projects,代码行数:30,代码来源:ServerMain.java
示例16: simplePrimaryServer
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
public static void simplePrimaryServer (LoadBalancerInvoker.Processor processor, int portNum) {
try {
TServerTransport serverTransport = new TServerSocket (portNum);
TServer server = new TSimpleServer (new Args (serverTransport).processor (processor));
System.out.println ("Starting the simple server...");
server.serve ();
} catch (Exception e) {
e.printStackTrace ();
}
}
开发者ID:mauryat,项目名称:thrift-load-balancer,代码行数:12,代码来源:Server.java
示例17: simpleSecondaryServer
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
public static void simpleSecondaryServer (LoadBalancer.Processor processor, int portNum) {
try {
TServerTransport serverTransport = new TServerSocket (portNum);
TServer server = new TSimpleServer (new Args (serverTransport).processor (processor));
System.out.println ("Starting the simple server...");
server.serve ();
} catch (Exception e) {
e.printStackTrace ();
}
}
开发者ID:mauryat,项目名称:thrift-load-balancer,代码行数:12,代码来源:Server.java
示例18: run
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
public void run() {
log.info("Starting up!");
try {
serverTransport = new TServerSocket(bindAddress);
server = new TSimpleServer(new Args(serverTransport).processor(processor));
server.serve(); // blocks until stop() is called.
// timer and timer task should be stopped at this point
writeToStorage();
} catch (TTransportException e) {
log.error("Couldn't start Configurator {}", this, e);
}
}
开发者ID:xjdr,项目名称:xio,代码行数:13,代码来源:Configurator.java
示例19: main
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
public static void main(String[] args) throws TTransportException {
TServerSocket trans_svr = new TServerSocket(9090);
TProcessor proc = new helloSvc.Processor<>(new MessageHandler());
TServer server =
new TSimpleServer(
new TSimpleServer.Args(trans_svr)
.processor(proc)
);
System.out.println("[Server] waiting for connections");
server.serve();
}
开发者ID:RandyAbernethy,项目名称:ThriftBook,代码行数:12,代码来源:HelloServer.java
示例20: main
import org.apache.thrift.server.TSimpleServer; //导入依赖的package包/类
public static void main(String[] args) throws TTransportException {
TServerSocket trans_svr = new TServerSocket(9090);
TProcessor proc = new helloSvc.Processor<>(new MessageHandler());
TSimpleServer server =
new TSimpleServer(
new TSimpleServer.Args(trans_svr)
.processor(proc)
);
System.out.println("[Server] waiting for connections");
server.serve();
}
开发者ID:RandyAbernethy,项目名称:ThriftBook,代码行数:12,代码来源:HelloServer.java
注:本文中的org.apache.thrift.server.TSimpleServer类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论