rsocket-flowable
note
This guide pertains to rsocket-js 0.x
versions. Ensure that your version of rsocket-
packages are not 1.0.0-alpha
before following this guide.
Reactive Streams
rsocket-js
includes an implementation of the Reactive Streams
API in JavaScript. Note that unlike standard Rx Observables, Reactive Streams are
lazy, pull-based, and support back-pressure. Two types are implemented:
Flowable
: An implementation of the Reactive StreamsPublisher
type, providing a demand-driven stream of values over time.Single
: LikeFlowable
, but resolves to a single value.
rsocket-js public API methods typically return values of these types.