文件名称:asyncall:轻量级异步并行调用工具
文件大小:19KB
文件格式:ZIP
更新时间:2024-07-29 23:39:09
Java
Java轻量级异步并行调用工具
基于java.util.concurrent线程池,主要做了如下简化或处理
轻量级:没有通过使用代理降低侵入性,因为那样有很多因素开发人员无法知道,增加复杂性和未知因素
// 三个任务A、B、C,其中C依赖A
// asyncall init
asyncallExecutor = AsyncallExecutor.createDefaultInstance();
asyncallExecutor.init();
// create execute unit
Asyncall asyncall = asyncallExecutor.createExecUnit();
final AsyncallFuture
【文件预览】:
asyncall-master
----.gitignore(68B)
----pom.xml(781B)
----src()
--------test()
--------main()
----readme.md(2KB)