You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The library provides an implementation of the [CompletionStage](https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletionStage.html) interface and related classes these are designed to support long-running blocking tasks (typically, I/O bound). This functionality augments the sole Java 8 built-in implementation, [CompletableFuture](https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html), that is primarily supports computational tasks. Also, the library helps with numerous asynchronous programing challenges like handling timeouts, retry/poll functionality, orchestrating results of multiple concurrent computations and similar.
4
4
@@ -12,7 +12,7 @@ New name:
12
12
<dependency>
13
13
<groupId>net.tascalate</groupId>
14
14
<artifactId>net.tascalate.concurrent</artifactId>
15
-
<version>0.9.6</version> <!-- Any version above 0.8.0, the latest one is recommended -->
15
+
<version>0.9.7</version> <!-- Any version above 0.8.0, the latest one is recommended -->
16
16
</dependency>
17
17
```
18
18
Old Name
@@ -38,7 +38,7 @@ To use a library you have to add a single Maven dependency
0 commit comments