MVN

net.dryuf : dryuf-concurrent

Maven & Gradle

Apr 01, 2023
1 stars

Dryuf Concurrent framework · Dryuf Concurrent is enhancement over original Java Concurrent Future design. Apart from providing ListenableFuture functionality, it provides flexibility how to handle cancel() operations, can delay the notifications. It allows various types of notification listeners, distinguishing among successful end, failure and end due to cancel request. Last but not least, it has very low memory footprint and excellent performance, even outperforming JDK Future without listener support.

<dependency>
    <groupId>net.dryuf</groupId>
    <artifactId>dryuf-concurrent</artifactId>
    <version>1.7.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of net.dryuf : dryuf-concurrent to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.7.0

All Versions

Choose a version of net.dryuf : dryuf-concurrent to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.7.x
dryuf-concurrent-1.7.0
1.6.x
dryuf-concurrent-1.6.1
dryuf-concurrent-1.6.0
1.5.x
dryuf-concurrent-1.5.0
1.4.x
dryuf-concurrent-1.4.0
1.3.x
dryuf-concurrent-1.3.1
dryuf-concurrent-1.3.0
1.2.x
dryuf-concurrent-1.2.0
1.1.x
dryuf-concurrent-1.1.0
1.0.x
dryuf-concurrent-1.0.0

How to add a dependency to Maven

Add the following net.dryuf : dryuf-concurrent maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>net.dryuf</groupId>
    <artifactId>dryuf-concurrent</artifactId>
    <version>1.7.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following net.dryuf : dryuf-concurrent gradle dependency to your build.gradle file:

implementation 'net.dryuf:dryuf-concurrent:1.7.0'

Gradle Kotlin DSL: Add the following net.dryuf : dryuf-concurrent gradle kotlin dependency to your build.gradle.kts file:

implementation("net.dryuf:dryuf-concurrent:1.7.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following net.dryuf : dryuf-concurrent sbt scala dependency to your build.sbt file:

libraryDependencies += "net.dryuf" % "dryuf-concurrent" % "1.7.0"

Advertisement