// 10 seconds
Image img1 = download();
render(img1);
// 12 seconds
Image img2 = download();
render(img2);
这些业务方代码很耗费时间,并且传统的写法,每个方法操作控制起来非常不方便。
void downloadAsync(String url,Consumer<Image> c) {
new Thread(() -> {
Image result = download(url);
c.accept(result);
} ).start();
}
fetchDataAsync (data -> {
downloadAsync(data , image -> render(image));
});
上述代码可以实现我们想要的结果,但是不推荐,Thread 并没有进行相关的方法组合、依赖API,这种实现方式,到后边基本就成了回调地狱。
new Thread(() -> {
final Data result = fetchData();
Image img = download(result.imageURL);
Bitmap bitmap = decode(img);
}).start();
上述方式,其实就是把三个线程的返回结果包裹在一个大的Thread 中,这种方式的确可以做,但是还是不够优雅。这样子导致外层的这个Thread 非常大。综上,两种实现方式总结如下:
while(true) {
t1.join(1000);
if (value != null) {
retrn t1Value;
}
t2.join(1000);
...
}
所以综合分析,直接使用 Thread 根本不靠谱。
ExecutorService service = Executors.newCacheThreadPool();
Future<Image> f = service.submit(() -> downloadImage(xxx));
// 做些其他事情
// f.get() 得到结果
Future 异常处理
try {
renderImage(future.get());
} catch (Exception e) {
e.printCause(); // 打印执行时的错误
}
Future 其他方便的方法
// 取消某个工作
future.cancel(boolean);
// 判断是否取消
future.isCancelled();
// 工作是否完成
future.isDone();
但是 Future 还是有问题,特点如下:
CF<Stirng> cf = CompletableFuture.completableFuture("Value");
String result = cf.get();
// 阻塞等待结果
String result = cf.join();
// 非阻塞等待结果输出
cf.thenAccept(s -> System.out.println(s));
String load() {...}
// 非阻塞等待结果
CF<Stirng> cf = CompletableFuture.supplyAsync(() -> load());
// 非阻塞等待结果,并且指定使用某个线程池执行
CF<Stirng> cf = CompletableFuture.supplyAsync(() -> load() , executorService);
CF<Stirng> cf = ...;
CF<Integer> length = cf.thenApply(data -> data.length());
cf1 = cf.thenApplyAsync(...);
cf2 = cf.thenApplyAsync(...);
CF<Stirng> cf = new CompletableFuture();
cf.thenAccept(s -> System.out.println(s););
CF<Stirng> cf = new CompletableFuture();
executor.submit(() -> {
String result = load();
cf.complete(result);
});
// 异常处理
executor.submit(() -> {
try {
String result = load();
cf.complete(result);
} catch (Exception e) {
cf.completeExceptionally(e);
}
});
cf.whenComplete(
(String s, Throable t) -> {
if (s != null) { System.out.println(s); }
else System.err.println(t);
}
);
比如目前存在这样的业务:先查找用户,查找到用户之后,再下载用户的头像图片,此时代码可以写成如下的方式:
CF<?> cf = findUser(1L).thenApply(user -> download(user));
CF<File> cf = findUser(1L).thenCompose(user -> download(user));
CF<File> cf = findUser(1L).thenCompose(user -> download(user))
.thenCompose(img -> save(img));
findUser(1L).thenApply(...)
.thenApply(...) // exception 处理
.thenCompose(...)
.whenComplete(...);
CF<String> api1 = ...;
CF<String> api2 = ...;
CF<String> api3 = ...;
CF<Void> all = CompletableFuture.allOf(api1,api2,api3);
// 等待3个操作所有返回值
CF<List<Strnig>> result = all.thenApply(
v -> Arrays.asList(api1.get(), api2.get(), api3.get());
);
// 等待其中任意一个结果返回
CF<Object> all = CompletableFuture.anyOf(api1,api2,api3);
CF<User> findUser(String id );
CF<User> saveUser(String id );
CF<User> downloadAvatar(String id);
findUser(...)
.thenCompoe(user -> saveUser(user.id))
.thenCompose(user -> downloadAvatar(user.id))
.thenAccept(img -> render(img));
CF<Value> executeQuery(String id);
List<CF<Value>> queries = ids.stream()
.map(id -> executeQuery(id))
.collect(toList());
// using allOf to let
// List<CF<Value>> -> CF<List<Value>>
CF<Void> all = CF.allOf(queies.toArray());
CF<List<Value>> result = all.thenApply(v -> queies.stream().map(q -> q.join())
.collect(toList)
);
getOrderFromNetwork ---> listProducts --> sendMail
推荐关注本文作者