Skip to content

Commit

Permalink
WIP/docs: update README
Browse files Browse the repository at this point in the history
  • Loading branch information
oldratlee committed Jul 28, 2024
1 parent 5c12e98 commit ca62cd8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@
- ⚙️ 更高效灵活的并发执行策略,如
- `AllFastFail`策略:当输入的多个`CF`有失败时快速失败返回,而不再于事无补地等待所有`CF`运行完成(`allOf`
- `AnySuccess`策略:返回首个成功的`CF`结果,而不是首个完成(但可能失败)的`CF``anyOf`
- `MostSuccess`策略:指定时间内返回多个`CF`中成功的结果,忽略失败或还没有运行完成的`CF`(返回指定的缺省值)
- `AllSuccess`策略:返回多个`CF`的成功结果,对于失败的`CF`返回指定的缺省值
- `MostSuccess`策略:指定时间内返回多个`CF`中成功的结果,对于失败或还没有运行完成的`CF`返回指定的缺省值
- `All(Complete)`/`Any(Complete)`策略:这2个在`CompletableFuture`中有支持
- 🦺 更安全的使用方式,如
- 支持设置缺省的业务线程池并封装携带,`CffuFactory#builder(executor)`方法
- 支持超时的`join`的方法,`join(timeout, unit)`方法
Expand Down

0 comments on commit ca62cd8

Please sign in to comment.