Skip navigation links

Package io.reactivex.flowable

Base reactive classes: Flowable; base reactive consumers; other common base interfaces.

See: Description

Package io.reactivex.flowable Description

Base reactive classes: Flowable; base reactive consumers; other common base interfaces.

A library that enables subscribing to and composing asynchronous events and callbacks.

The Flowable/Subscriber interfaces and associated operators (in the io.reactivex.flowable.internal.operators package) are inspired by the Reactive Rx library in Microsoft .NET but designed and implemented on the more advanced Reactive-Streams ( http://www.reactivestreams.org ) principles.

More information can be found at http://msdn.microsoft.com/en-us/data/gg577609.

Compared with the Microsoft implementation:

Services which intend on exposing data asynchronously and wish to allow reactive processing and composition can implement the Flowable class which then allow consumers to subscribe to it and receive events.

Usage examples can be found on the Flowable and Subscriber classes.

Skip navigation links