Skip to content

Commit cdfb5c5

Browse files
committed
Preparing release
1 parent 5e9d384 commit cdfb5c5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Maven Central](https://img.shields.io/maven-central/v/net.tascalate.concurrent/net.tascalate.concurrent.lib.svg)](https://search.maven.org/#artifactdetails%7Cnet.tascalate.concurrent%7Cnet.tascalate.concurrent.lib%7C0.6.3%7Cpom) [![GitHub release](https://img.shields.io/github/release/vsilaev/tascalate-concurrent.svg)](https://github.com/vsilaev/tascalate-concurrent/releases/tag/0.6.3) [![license](https://img.shields.io/github/license/vsilaev/tascalate-concurrent.svg)](http://www.apache.org/licenses/LICENSE-2.0.txt)
1+
[![Maven Central](https://img.shields.io/maven-central/v/net.tascalate.concurrent/net.tascalate.concurrent.lib.svg)](https://search.maven.org/#artifactdetails%7Cnet.tascalate.concurrent%7Cnet.tascalate.concurrent.lib%7C0.6.4%7Cpom) [![GitHub release](https://img.shields.io/github/release/vsilaev/tascalate-concurrent.svg)](https://github.com/vsilaev/tascalate-concurrent/releases/tag/0.6.4) [![license](https://img.shields.io/github/license/vsilaev/tascalate-concurrent.svg)](http://www.apache.org/licenses/LICENSE-2.0.txt)
22
# tascalate-concurrent
33
The library provides an implementation of the CompletionStage interface and related classes these are designed to support long-running blocking tasks (typically, I/O bound) - unlike 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.
44
# Why a CompletableFuture is not enough?
@@ -13,7 +13,7 @@ Add Maven dependency
1313
<dependency>
1414
<groupId>net.tascalate.concurrent</groupId>
1515
<artifactId>net.tascalate.concurrent.lib</artifactId>
16-
<version>0.6.3</version>
16+
<version>0.6.4</version>
1717
</dependency>
1818
```
1919

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>net.tascalate.concurrent</groupId>
66
<artifactId>net.tascalate.concurrent.lib</artifactId>
7-
<version>0.6.4-SNAPSHOT</version>
7+
<version>0.6.4</version>
88
<packaging>jar</packaging>
99

1010
<name>Tascalate Concurrenct</name>

src/main/java/net/tascalate/concurrent/CallbackRegistry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ void callFailureCallback(Throwable failure) {
282282
}
283283
}
284284

285-
static <S, U> void callCallback(Function<? super Callable<U>, ? extends Runnable> targetSetup,
285+
private static <S, U> void callCallback(Function<? super Callable<U>, ? extends Runnable> targetSetup,
286286
Function<? super S, ? extends U> callback,
287287
S value,
288288
Executor executor) {

0 commit comments

Comments
 (0)