Running Multiple Thread Pools (ExecutorService) together

孤街浪徒 提交于 2019-12-13 09:32:51

问题


I have an object that I need to run through 4 scenarios. I want to split this between 2 threads (so I can send to an additional server) I got this working to the 2 servers, but in trying to clean up the code i have created what looks like this;

 ExecutorService executor1 = Executors.newFixedThreadPool(1);
 ExecutorService executor2 = Executors.newFixedThreadPool(1);

 executor1.execute(userProvisioner1);
 executor1.execute(userProvisioner2);
 executor2.execute(userProvisioner3);
 executor2.execute(userProvisioner4);

 executor1.shutdown();
 executor2.shutdown();

 while (!executor1.isTerminated()&!executor2.isTerminated()) {
 }

userProvisioner1 & userProvisioner2 need to be run sequentially (as do 3 & 4) but can be run along side each other.

This does work, but I have hit issues since trying to use the 2 pools at once. Is this an issue with the pools or something else?


回答1:


If you need sequential activity, you can call one task and then another. The simple solution in your case is something like this.

ExecutorService exec = Executors.newFixedThreadPool(2);

exec.execute(new Runnable() {
    public void run() {
        userProvisioner1.run();
        userProvisioner2.run();
    }
});
exec.execute(new Runnable() {
    public void run() {
        userProvisioner3.run();
        userProvisioner4.run();
    }
});

exec.shutdown();
exec.awaitTermination();


来源:https://stackoverflow.com/questions/25330464/running-multiple-thread-pools-executorservice-together

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!