当前位置:网站首页>Gauva的ListenableFuture
Gauva的ListenableFuture
2022-08-03 08:08:00 【鲲鹏飞九万里】
Guava的ListenableFuture
一、ListenableFuture 介绍
并发是一个困难问题,但是通过强大和强大的抽象能够显著的简化工作。为了简化问题,Gauva使用ListenableFuture扩展了JDK的Future接口,
**我们强烈建议你在你所有的代码中使用ListenableFuture
代替Future
,**因为:
- 大多数的
Future
方法需要它; - 这比以后更改为
ListenableFuture
更容易; - 实用方法的提供者不需要提供
Future
和ListenableFuture
方法的变体;
二、接口
传统的Future
代表着异步计算的结果:一个计算可能也可能没有完成生成结果。Future可以是一个程序计算的句柄,一个来自服务的承诺提供给我们一个结果。
ListenableFuture
允许你注册一个回调函数,一旦计算是完成或者计算是已经完成,回调函数会立马执行。这个简单的添加能有效的支持多种Future接口不支持的操作。
基础的操作被ListenableFuture
添加是通过addListener(Runnable, Executor)
,它指定了当Future
的计算完成之后,指定的Runnable
将会在Executor
中执行。
三、添加回调函数
大多数用户更喜欢使用Futures.addCallback(ListenableFuture, FutureCallback, Executor)
,一个FutueCallback
有两个方法:
onSuccess(V)
如果future执行成功,基于结果进行执行。onFailure(Throwable)
如果future执行失败,基于失败进行执行。
四、创建
相对于JDKExecutorService.submit(Callable)
方法初始化一个异步的计算。Guava提供了一个ListeningExecutorService
接口,它能在任何ExecutorService
返回一个正常Future
的地方,返回一个ListenableFuture
。为了将ExecutorService
转换成ListeningExecutorService
,仅需要使用MoreExecutors.listeningDecorator(executorService)
:
ListeningExecutorService service =
MoreExecutors.listeningDecorator(Executors.newFixedThreadPool(
Runtime.getRuntime().availableProcessors()));
ListenableFuture<String> listenableFuture = service.submit(() -> callDemo());
Futures.addCallback(listenableFuture, new FutureCallback<String>() {
@Override
public void onSuccess(String result) {
System.out.println("Run Ok : " + result);
// service.shutdown();
}
@Override
public void onFailure(Throwable t) {
System.out.println("Run Fail: " + t);
}
}, service);
或者,如果你从一个基于FutureTask
的API进行转换,Guava提供了ListenableFutureTask.create(Callable)
和ListenableFutureTask.create(Runnable, V)
。并不像JDK,ListenableFutureTask
并不意味着直接扩展。
如果您更喜欢设置未来值的抽象而不是实现计算值的方法,请考虑扩展 AbstractFuture<V>
或直接使用 SettableFuture
。
如果你必须将另一个API提供的Future转换成ListenableFuture
,你没有选择除了使用重量级的JdkFutureAdapters.listenInPoolThread(Future)
,将Future转化成ListenableFuture
。无论什么时候,只要有可能,都应该修改源代码去返回一个ListenableFuture
。
五、应用
使用ListenableFuture
的重要原因是,它让异步的链操作成为可能。
很多有效的其它操作使用ListenableFuture
是支持的,而单独使用Future
是不支持的。不同的操作能够被不同的Executor执行,并且单个 ListenableFuture 可以有多个等待它的操作。
当多个操作应该在另一个操作开始时立即开始时——“扇出”——ListenableFuture 才起作用:它触发所有请求的回调。通过稍微多一点的工作,我们能“扇入”,或触发ListenableFuture
进行计算只要若干个其它的Future执行完(看:Futures.allAsList
)。
方法 | 描述 | 延伸 |
---|---|---|
Futures.transformAsync(ListenableFuture, AsyncFunction, Executor) | 返回一个新的ListenableFuture ,它的结果是应用AsyncFunction。AsyncFunction是对ListenableFuture结果的加工 | |
Futures.transform(ListenableFuture, Function, Executor) | 返回一个新的ListenableFuture ,它的结果是应用Function。Function是对ListenableFuture结果的加工 | |
Futures.allAsList(Iterable<ListenableFuture<V>>) | 返回一个ListenableFuture ,它的值是一个list包含了每一个输入输入future的值。如果任何的future失败或取消,这个future也失败或取消。 | |
Futures.successfulAsList(Iterable<ListenableFuture>) | 返回一个ListenableFuture ,它的值是一个list包含了每一个输入输入future的值。如果相对应的future失败或取消,将用null代替。 |
一个AsyncFunction
提供了一个方法ListenableFuture<B> apply(A a)
。它用于异步传输一个值。
六、避免内嵌的Future
ListenableFuture<ListenableFuture<String>> nestedFuture =
executorService.submit(() -> otherExecutorService.submit(() -> callDemo()));
上面的代码是不正确的, 因为如果外部Future的取消与外部Future的完成竞争,则该取消不会传播到内部Future。 使用 get() 或侦听器检查其他Future的失败也是一个常见错误,但除非特别注意,否则从 otherCallable 抛出的异常将被抑制。
为了避免这种情况,Guava 的所有Future处理方法(以及一些来自 JDK)都有 *Async 版本,可以安全地解开这个嵌套:
Futures.transformAsync(ListenableFuture, AsyncFunction, Executor)
ExecutorService.submit(Callable)
Futures.submitAsync(AsyncCallable, Executor)
边栏推荐
猜你喜欢
vs 2022无法安装 vc_runtimeMinmum_x86错误
图解Kernel Device Tree(设备树)的使用
Mysql如何对两张表的相同字段,同时查询两张数据表
Poke the myth of Web3?Poke the iron plate.
Golang协程goroutine的调度与状态变迁分析
如何使用电子邮件营销在五个步骤中增加产品评论
23届微软秋招内推
AI mid-stage sequence labeling task: three data set construction process records
pyspark df secondary sorting
mysql的innodb存储引擎和myisam存储引擎的区别
随机推荐
品牌方发行NFT时,应如何考量实用性?
ArcEngine(四)MapControl_OnMouseDown的使用
ArcEngine (six) use the tool tool to realize the zoom in, zoom out and translation of the pull box
行业洞察 | 如何更好的实现与虚拟人的互动体验?
mysql 8.0.12 安装配置方法并--设置修改密码
WordPress主题-B2美化通用子主题商业运营版
积分商城系统设计
训练正常&异常的GAN损失函数loss变化应该是怎么样的
greenplum role /user 管理
牛客 - 最佳直播时间 (差分)
Logic Pro X built-in sound library list
差分(前缀和的逆运算)
IDEA2021.2安装与配置(持续更新)
rust 学习笔记
xshell开启ssh端口转发,通过公网机器访问内网机器
23届微软秋招内推
实时目标检测新高地之#YOLOv7#更快更强的目标检测器
redis键值出现 xacxedx00x05tx00&的解决方法
ArcEngine(一)加载矢量数据
netstat 及 ifconfig 是如何工作的。