码迷,mamicode.com
首页 > 其他好文 > 详细

聊聊分布式事务

时间:2020-08-08 23:46:26      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:快速   冲突   关于   数据库   信息   时机   redo   strong   数据库完整性   

// 没有返回值的异步回调 CompletableFuture.runAsync
// get方法会阻塞
CompletableFuture<Void> completableFuture=CompletableFuture.runAsync(()->{
try {
TimeUnit.SECONDS.sleep(2);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(Thread.currentThread().getName()+"runAsync->Void");
});

System.out.println("Demo1.main 11111");
completableFuture.get();
System.out.println("Demo1.main 22222");

 

// 有返回值得异步回调 CompletableFuture.supplyAsync
// whenComplete 编译成功后的处理
// exceptionally 异常后的处理
// get方法会阻塞
CompletableFuture<Integer> uCompletableFuture = CompletableFuture.supplyAsync(() -> {
System.out.println(Thread.currentThread().getName() + "supplyAsync->Integer");
int i=10/0;
return 1024;
});
System.out.println("Demo1.main 11111");
Integer integer = uCompletableFuture.whenComplete((t, u) -> {
System.out.println("t=>"+t); // 正常情况下,返回结果
System.out.println("u=>"+u);
}).exceptionally((e) -> { //异常情况下的处理
System.out.println(e.getMessage());
return 233;
}).get();
System.out.println(integer);
System.out.println("Demo1.main 22222");

聊聊分布式事务

标签:快速   冲突   关于   数据库   信息   时机   redo   strong   数据库完整性   

原文地址:https://blog.51cto.com/10448399/2518092

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!