Installation

Add the Java SDK (com.babelqueue:babelqueue-core) to your build.

Maven:

<dependency>
    <groupId>com.babelqueue</groupId>
    <artifactId>babelqueue-core</artifactId>
    <version>1.0.0</version>
</dependency>

Gradle:

implementation("com.babelqueue:babelqueue-core:1.0.0")

Requirements

  • Java 17+

The core is broker-agnostic with zero dependencies (pure JDK). You bring your own Redis or RabbitMQ client to move the encoded bytes — there is no separate BabelQueue runtime to install.

Next: Configuration.