我有以下代码可启动节俭的Java服务器:

public class Server {

    public static void StartsimpleServer(GameService.Processor<GameServiceHandler> processor) {
        try {
            TServerTransport serverTransport = new TServerSocket(9090);
            TServer server = new TThreadPoolServer(new
              TThreadPoolServer.Args(serverTransport).processor(processor));

            System.out.println("Starting the multi thread server...");
            server.serve();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public static void main(String[] args) {
        StartsimpleServer(new GameService.Processor<>( new GameServiceHandler()));
    }
}


我想设置最大线程数以及其他与线程相关的设置。我怎样才能做到这一点?我找不到与此有关的任何文档。

最佳答案

这是你想要的:

TThreadPoolServer.Args a = new TThreadPoolServer.Args(serverTransport).processor(processor);
a.maxWorkerThreads(5);

关于java - Thrift Java服务器-如何配置线程,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17093548/

10-11 04:05