Skip to content

Overview

Mutiny Zero is a minimal API for creating reactive streams compliant publishers.

It weights less than 50K and has 0 external dependency beyond the reactive streams API (or Java Flow).

What are reactive streams?

From the reactive streams website:

Reactive Streams is an initiative to provide a standard for asynchronous stream processing with non-blocking back pressure.

Reactive streams are the lingua franca for an open and vendor-neutral asynchronous programming ecosystem in Java.

In a reactive streams ecosystem sources with asynchronous I/O can be wrapped as publishers, and applications can subscribe to these publishers:

Reactive Streams ecosystem

Since reactive streams are defined as a set of minimal interfaces (see the Java Flow interfaces), it is possible to mix and match publishers, processors and subscribers from different software stacks. For instance an event streaming service and a large data store can expose reactive streams compliant clients. In turn applications can be made end-to-end reactive as long as the code honors reactive streams protocols and semantics.

Reactive streams is a low-level protocol and applications shall use higher-level reactive programming libraries such as Mutiny.

Why is Mutiny Zero any needed?

The reactive streams interfaces are quite simple, so where is the catch?

It's all about the protocol!

In a perfect world middleware and service vendors would simply implement these interfaces and ship client libraries. The problem with reactive streams is not the interfaces: the protocol is the hard part.

Reactive streams come with a specification and a TCK to check for publishers, processors and subscribers conformance. There are many subtle rules that the TCK verifies, and it can be surprisingly hard to respect all of them.

Of course one may be tempted to just ignore some rules and just focus on the Java interfaces, but then combining reactive bits will likely break at runtime due to back-pressure and/or threading problems.

Why does it matter to keep the ecosystem open and vendor-neutral?

Developing reactive streams compliant libraries is difficult, so vendors have been tempted to simply reuse a high-level reactive programming library.

All of these libraries have ways to create publishers from different eventing models, and because they are supposed to pass the reactive streams TCK then the resulting publishers shall also be compliant. This is a technically correct yet a poor answer in our opinion.

Reactive Streams pollution

We dived into the code of several reactive streams client libraries, and we found out that more often than not they had become tightly-coupled to the peculiarities of certain reactive programming libraries.

This is a major problem because strong adherence to a complete reactive programming library annihilates the benefits of the reactive streams specification:

  • applications may want to use a different reactive programming library than the one chosen by a vendor, bringing unwanted dependencies (who needs 3 reactive programming libraries in their code base?),
  • vendors become bound to the release cycle of the chosen reactive programming library,
  • conflicts between versions are more likely to happen because different vendors may depend on incompatible versions of a given reactive programming library.

The promise of Mutiny Zero

The mission of Mutiny Zero is to provide a minimal library for implementing reactive streams compliant publishers.

Reactive Streams minimalism

Mutiny Zero does not want to be a complete reactive programming library for Java, so you will only find APIs and helpers deemed useful to write publishers. Nothing else, nothing more.

Application developers must be free to choose their reactive stacks and not be imposed opinionated choices by vendors!