Skip to content

Commit a083e03

Browse files
committed
0.5.2 release (adding supplyAsync / runAsync as CompletableTask root entry point)
1 parent 099b2a6 commit a083e03

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
4+
55
<groupId>net.tascalate.concurrent</groupId>
66
<artifactId>net.tascalate.concurrent.lib</artifactId>
77
<version>0.5.2</version>

src/test/java/net/tascalate/concurrent/J8Examples.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public static void main(final String[] argv) throws InterruptedException, Execut
2727
CompletableTask
2828
.supplyAsync(() -> awaitAndProduceN(73), executorService)
2929
.thenAcceptAsync(J8Examples::onComplete)
30-
.get();
30+
.get();
3131

3232
for (int i : Arrays.asList(5, -5, 10, 4)) {
3333
final Promise<Integer> task1 = executorService.submit(() -> awaitAndProduce1(i, 1500));

0 commit comments

Comments
 (0)