Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix jctools version #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
*.class

target

# Package Files #
*.jar
Expand Down
4 changes: 2 additions & 2 deletions futurity-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<parent>
<groupId>com.spikhalskiy.futurity</groupId>
<artifactId>futurity-parent</artifactId>
<version>0.3-SNAPSHOT</version>
<version>0.4-SNAPSHOT</version>
</parent>

<artifactId>futurity-core</artifactId>
<version>0.3-SNAPSHOT</version>
<version>0.4-SNAPSHOT</version>
<packaging>jar</packaging>
<name>futurity/core</name>
<description>Core component of Futurity - a simple tool to convert Future to CompletableFuture</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ public class FuturityWheel {

protected final HashedWheelTimer timerWheel;
protected final MpscChunkedArrayQueue<WorkTask>
taskSubmissions = new MpscChunkedArrayQueue<>(50, MAX_QUEUE_SIZE, true);
taskSubmissions = new MpscChunkedArrayQueue<>(50, MAX_QUEUE_SIZE);
protected final Queue<WorkTask> taskSubmissionsEmergent = new ConcurrentLinkedQueue<>();
protected final MpscChunkedArrayQueue<StateChange> stateChanges = new MpscChunkedArrayQueue<>(5, 10, true);
protected final MpscChunkedArrayQueue<StateChange> stateChanges = new MpscChunkedArrayQueue<>(5, 10);

protected final LinkedList<WorkTask> basicPooling = new LinkedList<>();
protected final Thread jvmShutdownHook;
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.spikhalskiy.futurity</groupId>
<artifactId>futurity-parent</artifactId>
<version>0.3-SNAPSHOT</version>
<version>0.4-SNAPSHOT</version>
<packaging>pom</packaging>
<name>futurity</name>
<description>A simple tool to convert plain old Java Future to CompletableFuture</description>
Expand Down Expand Up @@ -138,7 +138,7 @@
<dependency>
<groupId>org.jctools</groupId>
<artifactId>jctools-core</artifactId>
<version>1.2.1</version>
<version>2.1.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down