forked from ReactiveDesignPatterns/CodeSamples
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathParallelExecutionWithJavaFuture.java
67 lines (53 loc) · 1.71 KB
/
ParallelExecutionWithJavaFuture.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
* Copyright (c) 2018 https://www.reactivedesignpatterns.com/
*
* Copyright (c) 2018 https://rdp.reactiveplatform.xyz/
*
*/
import java.util.concurrent.*;
import reactivedesignpatterns.NamedPoolThreadFactory;
public class ParallelExecutionWithJavaFuture {
public static class ReplyA {}
public static class ReplyB {}
public static class ReplyC {}
public static class Result {
final ReplyA replyA;
final ReplyB replyB;
final ReplyC replyC;
public Result(ReplyA replyA, ReplyB replyB, ReplyC replyC) {
this.replyA = replyA;
this.replyB = replyB;
this.replyC = replyC;
}
}
public static Result aggregate(ReplyA replyA, ReplyB replyB, ReplyC replyC) {
return new Result(replyA, replyB, replyC);
}
private static final ExecutorService EXECUTOR_SERVICE =
new ThreadPoolExecutor(
3,
3,
60,
TimeUnit.SECONDS,
new LinkedBlockingDeque<>(),
new NamedPoolThreadFactory("Parallelism", true),
new ThreadPoolExecutor.CallerRunsPolicy());
public static Future<ReplyA> taskA() {
return EXECUTOR_SERVICE.submit(ReplyA::new); // return from compute
}
public static Future<ReplyB> taskB() {
return EXECUTOR_SERVICE.submit(ReplyB::new); // return from compute
}
public static Future<ReplyC> taskC() {
return EXECUTOR_SERVICE.submit(ReplyC::new); // return from compute
}
public static void main(String[] args) throws ExecutionException, InterruptedException {
// #snip
final Future<ReplyA> a = taskA();
final Future<ReplyB> b = taskB();
final Future<ReplyC> c = taskC();
final Result r = aggregate(a.get(), b.get(), c.get());
// #snip
System.out.println(r);
}
}