async-streams
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.datakernel</groupId>
<artifactId>async-streams</artifactId>
<version>1.1.3</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.datakernel</groupId>
<artifactId>datakernel</artifactId>
<version>1.1.3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>async-streams</artifactId>
<name>DataKernel: Async Streams</name>
<description>
Composable asynchronous/reactive streams with powerful data processing capabilities.
</description>
<dependencies>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>io.datakernel</groupId>
<artifactId>eventloop</artifactId>
<version>${version}</version>
</dependency>
<dependency>
<groupId>io.datakernel</groupId>
<artifactId>serializer</artifactId>
<version>${version}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>net.jpountz.lz4</groupId>
<artifactId>lz4</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>