Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
152 lines (128 loc) · 4.92 KB

File metadata and controls

152 lines (128 loc) · 4.92 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.TimeUnit;
/**
* @author xjn
* @since 2020-05-22
*/
public class CompletableFutureTest {
//1.新建一个完成的CompletableFuture
static void completedFutureExample() throws Exception {
CompletableFuture<String> cf = CompletableFuture.completedFuture("message");
if (cf.isDone()) {
System.out.println(cf.get());
}
}
//2.运行一个简单的异步stage
static void runAsyncExample() {
CompletableFuture<Void> completableFuture = CompletableFuture.runAsync(() -> {
sleep(1000);
});
System.out.println(completableFuture.isDone());
}
//3.将方法作用于前一个Stage
static void thenApplyExample() throws Exception {
CompletableFuture<String> message = CompletableFuture.completedFuture("message").thenApply(s -> s.toUpperCase());
if (message.isDone()) {
System.out.println(message.get());
}
}
//4.异步的的将方法作用于前一个Stage
static void thenApplyAsyncExample() {
CompletableFuture completableFuture = CompletableFuture.completedFuture("message")
.thenApplyAsync(s -> {
sleep(1000);
return s.toLowerCase();
});
System.out.println(completableFuture.join());
}
static ExecutorService executor = Executors.newFixedThreadPool(3, new ThreadFactory() {
int count = 1;
@Override
public Thread newThread(Runnable runnable) {
return new Thread(runnable, "custom-executor-" + count++);
}
});
//使用一个自定义的Executor来异步执行该方法
static void thenApplyAsyncWithExecutorExample() {
CompletableFuture cf = CompletableFuture.completedFuture("message")
.thenApplyAsync(s -> {
sleep(1000);
return s += "123213";
}, executor);
System.out.println(cf.join());
}
//6.消费(Consume)前一个Stage的结果
static void thenAcceptExample() throws Exception {
StringBuilder result = new StringBuilder();
CompletableFuture<Void> completableFuture = CompletableFuture.completedFuture("thenAccept message")
.thenAccept(s -> result.append(s));
System.out.println(completableFuture.get());
System.out.println(result.toString());
}
//7.异步执行Comsume
static void thenAcceptAsyncExample() {
StringBuilder result = new StringBuilder();
CompletableFuture cf = CompletableFuture.completedFuture("thenAcceptAsync message")
.thenAcceptAsync(s -> result.append(s));
cf.join();
System.out.println(result.toString());
}
//8.计算出现异常时
//TODO
static void completeExceptionallyExample() throws Exception {
// CompletableFuture cf = CompletableFuture.completedFuture("message")
// .thenApplyAsync(String::toUpperCase,
// CompletableFuture.delayedExecutor(1, TimeUnit.SECONDS));
//
// CompletableFuture exceptionHandler =
// cf.handle((s, th) -> { return (th != null) ? "message upon cancel" : ""; });
}
//9.取消计算
static void cancelExample() {
}
//10.将Function作用于两个已完成Stage的结果之一
static void applyToEitherExample() {
String original = "Message";
CompletableFuture<String> cf1 = CompletableFuture.completedFuture(original)
.thenApplyAsync(s -> {
sleep(100);
return s.toLowerCase() + "1";
});
CompletableFuture cf2 = cf1.applyToEither(
CompletableFuture.completedFuture(original).thenApplyAsync(s -> {
sleep(100);
return s.toUpperCase();
}),
s -> s + " from applyToEither");
System.out.println(cf2.join());
}
//11.消费两个阶段的任意一个结果
static void acceptEitherExample() {
String original = "Message";
StringBuilder result = new StringBuilder();
}
//12.在两个阶段都完成后运行Runnable
static void runAfterBothExample() {
}
public static void main(String[] args) throws Exception {
// completedFutureExample();
// runAsyncExample();
// thenApplyExample();
// thenApplyAsyncExample();
// thenApplyAsyncWithExecutorExample();
// thenAcceptExample();
// completeExceptionallyExample();
// applyToEitherExample();
runAfterBothExample();
}
public static void sleep(int time) {
try {
Thread.sleep(time);
} catch (Exception e) {
}
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.