Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
235 views
in Technique[技术] by (71.8m points)

java - Running Multiple Thread Pools (ExecutorService) together

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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();

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...