Extension methods for Subscriber.
A Subscriber.Sync
is a Subscriber whose onNext
signal
is synchronous (i.e.
A Subscriber.Sync
is a Subscriber whose onNext
signal
is synchronous (i.e. the upstream observable doesn't need to
wait on a Future
in order to decide whether to send the next event
or not).
Subscriber builder
Helper for building an empty subscriber that doesn't do anything,
but that returns Stop
on onNext
.
Builds an Subscriber that just logs incoming events.
Helper for building an empty subscriber that doesn't do anything, besides logging errors in case they happen.
Given an org.reactivestreams.Subscriber
as defined by the
Reactive Streams specification,
it builds an Subscriber instance compliant with the
Monix Rx implementation.
Transforms the source Subscriber into a org.reactivestreams.Subscriber
instance as defined by the Reactive Streams
specification.
Transforms the source Subscriber into a org.reactivestreams.Subscriber
instance as defined by the Reactive Streams
specification.
a strictly positive number, representing the size of the buffer used and the number of elements requested on each cycle when communicating demand, compliant with the reactive streams specification
Transforms the source Subscriber into a org.reactivestreams.Subscriber
instance as defined by the Reactive Streams
specification.