We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96cfb8d commit 8058676Copy full SHA for 8058676
java/AoJ/README.md
@@ -108,10 +108,11 @@ introduction to ADBA see the [JavaOne 2017 presentation](http://www.oracle.com/t
108
ForkJoinPool.commonPool().awaitQuiescence(1, TimeUnit.MINUTES);
109
}```
110
111
+
112
## AoJ Design Spec in 100 words or less
113
114
The methods called by the user thread create a network
-([DAG](https://en.wikipedia.org/wiki/Directed_acyclic_graph)) of
115
+(i.e., [DAG](https://en.wikipedia.org/wiki/Directed_acyclic_graph)) of
116
```CompletableFuture```s. These ```CompleteableFuture```s asynchronously execute
117
the synchronous JDBC calls and the result processing code provided by the user
118
code. By default AoJ uses ```ForkJoinPool.commonPool()``` to execute
0 commit comments