MVN

net.dryuf : dryuf-bigio

Maven & Gradle

Mar 30, 2022
0 stars

Dryuf BigIo framework · Dryuf BigIo is stateless, unlimited IO framework, solving few design problems of original JDK. It mainly provides three things - FlatBuffer with 64-bit address space and being stateless. Additionally, it provides FlatChannel interface and few implementations - providing the arbitrary reads and writes from chosen position. This is implemented only in FileChannel in NIO so this interface makes it easier to provide those stateless reads and writes on virtual channels too. BigIo also provides committable objects, allowing marking the object as completed or incomplete, so it correctly results into success or exception on receiving side.

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

Latest Version

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

  • Latest Stable: 1.1.0

All Versions

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

Version Vulnerabilities Updated
1.1.x
dryuf-bigio-1.1.0
1.0.x
dryuf-bigio-1.0.0

How to add a dependency to Maven

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

<dependency>
    <groupId>net.dryuf</groupId>
    <artifactId>dryuf-bigio</artifactId>
    <version>1.1.0</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'net.dryuf:dryuf-bigio:1.1.0'

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

implementation("net.dryuf:dryuf-bigio:1.1.0")

How to add a dependency to SBT Scala

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

libraryDependencies += "net.dryuf" % "dryuf-bigio" % "1.1.0"

Advertisement