文件名称:ordered-scheduler:解锁有序列排序要求的代码
文件大小:65KB
文件格式:ZIP
更新时间:2024-06-29 21:52:09
Java
有序调度程序 解锁有顺序/排序要求的代码 灵感来自一文。 此实现为解锁代码提供了一个轻量级的解决方案,它仅因有序/顺序要求而同步。 用例 // called by multiple threads (e.g. thread pool) public void execute() { FooInput input; synchronized ( this ) { // this call needs to be synchronized along the write() to guarantee same ordering input = read(); // this call is therefore not executed conccurently (#1) BarOutput output = process(input);
【文件预览】:
ordered-scheduler-master
----gradlew(5KB)
----settings.gradle(39B)
----src()
--------test()
--------main()
----.travis.yml(15B)
----gradle()
--------wrapper()
----LICENCE(11KB)
----README.md(3KB)
----gradlew.bat(2KB)
----.gitignore(35B)
----build.gradle(2KB)