异步回调
Posted hpdblogs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了异步回调相关的知识,希望对你有一定的参考价值。
public class CompletableFutureDemo {
public static void main(String[] args) throws Exception {
//同步,异步,异步回调
//MQ消息中间件
//同步
CompletableFuture<Void> future1 = CompletableFuture.runAsync(()->{
System.out.println("CompletableFuture.runAsync");
});
future1.get();
//异步回调
CompletableFuture<Integer> future2 = CompletableFuture.supplyAsync(()->{
System.out.println("CompletableFuture.supplyAsync");
int a = 10/0;
return 1024;
});
future2.whenComplete(
(t,u)->{
System.out.println("*****t="+t); //值
System.out.println("*****u="+u); //u是错误信息
}
).exceptionally(
f->{
System.out.println(f.getMessage());
return 444;
}
);
}
}
以上是关于异步回调的主要内容,如果未能解决你的问题,请参考以下文章