Girish Mahajan (Editor)

Reactive Streams

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

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

The main goal of Reactive Streams is to govern the exchange of stream data across an asynchronous boundary—like passing elements on to another thread or thread-pool—while ensuring that the receiving side is not forced to buffer arbitrary amounts of data. In other words, back pressure is an integral part of this model in order to allow the queues which mediate between threads to be bounded.

The intention of the specification is to allow the creation of many conforming implementations, which by virtue of abiding by the rules will be able to interoperate smoothly, preserving the mentioned benefits and characteristics across the whole processing graph of a stream application.

The scope of Reactive Streams is a minimal set of interfaces, methods and protocols that describe the necessary operations and entities to achieve the asynchronous streams of data with non-blocking back pressure. End-user DSLs or protocol binding APIs have purposefully been left out of the scope to encourage and enable different implementations that potentially use different programming languages to stay as true as possible to the idioms of their platform.

Reactive Streams started as an initiative in late 2013 between engineers at Netflix, Pivotal and Typesafe. Some of the earliest discussions began in 2013 between the Play and Akka teams at Typesafe. Typesafe is one of the main contributors of Reactive Streams. Other contributors include Red Hat, Oracle, Twitter and spray.io. Work is under way to make the Java implementation of Reactive Streams part of Java 9: Doug Lea, leader of JSR 166, has proposed a new Flow class that will include the interfaces currently provided by Reactive Streams.

On April 30, 2015 version 1.0.0 of Reactive Streams for the JVM was released, including Java API, a textual specification, a TCK and implementation examples. It comes with a multitude of compliant implementations verified by the TCK for 1.0.0, listed in alphabetical order:

  • Akka Streams
  • MongoDB
  • Ratpack
  • Reactive Rabbit — driver for RabbitMQ/AMQP
  • Spring and Pivotal Project Reactor
  • Netflix RxJava
  • Slick 3.0
  • Vert.x 3.0
  • Other implementations include Cassandra, Elasticsearch, Apache Kafka, Parallel Universe Quasar, Play Framework.

    Spring 5 is announced to be built upon Reactive Streams compatible Reactor Core.

    References

    Reactive Streams Wikipedia