-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodos.txt
More file actions
58 lines (34 loc) · 1.24 KB
/
todos.txt
File metadata and controls
58 lines (34 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
https://www.mkyong.com/maven/how-to-create-a-jar-file-with-maven/
https://www.rainerhahnekamp.com/en/publishing-a-java-library-to-maven-central/
contact Suguru Montegi - Suguru Motegi
https://github.com/suguru03/neo-async
do filterAndMap
q.onSaturated(1, queue -> {
System.out.println("saturated");
});
should only fire the callback once.
q.onSaturated(1, (queue, v) -> {
System.out.println("saturated");
v.removeThisCallback();
});
should only fire the callback once.
using async.waterfall with a map
async.waterfall([
v => {
v.set('foo', 'bar');
v.done();
},
v => {
var foo = v.get("bar");
v.done(null, "foo", "bar");
}
]
use a Threadpool of size 1 to process callbacks
https://github.com/vert-x3/vertx-guide-for-java-devs
https://stackoverflow.com/questions/337903/how-can-you-ensure-in-java-that-a-block-of-code-can-not-be-interrupted-by-any-ot
https://docs.oracle.com/javase/tutorial/essential/concurrency/interrupt.html
https://issues.sonatype.org/login.jsp?os_destination=%2Fsecure%2Fdefault.jsp
async.series is just async.parallelLimit(1)
http://maven.apache.org/maven-release/maven-release-plugin/
dynamic class re-loading
https://www.toptal.com/java/java-wizardry-101-a-guide-to-java-class-reloading