AsyncStream<T> is an initiative to provide the simplest API to model a stream of elements that are being produced
asynchronously.
It is available on Maven Central.
Gradle:
dependencies {
implementation("dev.jayo:jayo-async-stream:X.Y.Z")
}Maven:
<dependency>
<groupId>dev.jayo</groupId>
<artifactId>jayo-async-stream</artifactId>
<version>X.Y.Z</version>
</dependency>The Jayo AsyncStream code is written in Java without the use of any external dependencies, to be as light as possible.
Jayo AsyncStream requires Java 11 or more recent.
Contributions are very welcome, simply clone this repo and submit a PR when your fix, new feature, or optimization is ready!
Copyright (c) 2026-present, pull-vert and Jayo contributors