CompletableFuture详解
2022-02-28 11:38:29 0 举报
AI智能生成
CompletableFuture详解
作者其他创作
大纲/内容
completedFuture
faildFuture
同步
supplyAsync
runAsync
异步
创建实例
complete
completeExpectionally
设置任务结果
带参数,带返回
Consumer<T>-consumer
带参数,无返回
Runnable-action
无参数,无返回
核心参数
thenAccept(consumer)
thenApply(fn)
thenRun(action)
thenCompose
thenAcceptAsync(consumer)
thenApplyAsync(fn)
thenRunAsync(action)
thenComposeAsync
串行
AND汇聚
OR汇聚
whenComplete(bi_consumer)
handle(bi_fn)
exceptionally(fn)
whenCompleteAsync(bi_consumer)
handleAsync(bi_fn)
异常处理
执行关系
CompletionStage
get
cancel
isDone
...
Future
立即获取结果不阻塞,已经计算完成返回结果,否则返回设置的默认值
getNow
join
allOf
anyOf
....
其他方法
CompletableFuture详解
0 条评论
回复 删除
下一页