Skip to content

reactor/reactor-addons

Folders and files

NameName
Last commit message
Last commit date

Latest commit

40402e1 · Aug 9, 2022
Feb 18, 2022
Feb 16, 2022
Aug 9, 2022
Mar 8, 2022
Apr 11, 2022
No commit message
Oct 11, 2016
Aug 9, 2022
Mar 8, 2022
Aug 9, 2022
Feb 16, 2022
Feb 16, 2022
Jul 2, 2021

Repository files navigation

Reactor Addons

CI on GHA

Join the chat at https://gitter.im/reactor/reactor

Latest addons

Addons List

reactor-adapter

Bridge to RxJava 2 Observable, Completable, Flowable, Single, Maybe, Scheduler, and also SWT Scheduler, Akka Scheduler ...

reactor-extra

Extra operations and processors for Reactor Core including mathematical operations to compute sum, average, min or max from numerical sources.

Contributing an Add-on

Build instructions

Reactor uses a Gradle-based build system. Building the code yourself should be a straightforward case of:

git clone git@github.com:reactor/reactor-addons.git
cd reactor-addons
./gradlew test

This should cause the submodules to be compiled and the tests to be run. To install these artifacts to your local Maven repo, use the handly Gradle Maven plugin:

./gradlew install

Maven Artifacts

Snapshot and pre-release Maven artifacts are provided in the SpringSource snapshot repositories. To add this repo to your Gradle build, specify the URL like the following:

ext {
  reactorAddonsVersion = '3.5.0-M5'
}

repositories {
  //maven { url 'https://repo.spring.io/release' }
  maven { url 'https://repo.spring.io/milestone' }
  //maven { url 'https://repo.spring.io/snapshot' }
  mavenCentral()
}

dependencies {
  // Reactor Adapter (RxJava2, Akka Actors scheduler and more)
  compile "io.projectreactor.addons:reactor-adapter:$reactorAddonsVersion"
}

Documentation

Community / Support

License

Reactor is Apache 2.0 licensed.