Completable
into a Mono<Void>
instance.Flowable
instance into a Flux
instance, allowing micro-fusion
and backpressure propagation to occur between the two libraries.Flux
instance into an Rxjava3 Flowable
instance, allowing micro-fusion
and backpressure propagation to occur between the two libraries.Flux
instance into an Rxjava3 Observable
.Scheduler
into a Reactor Scheduler
.Maybe
into a Mono
instance.Mono
instance into an Rxjava3 Completable
instance.Mono
instance into an Rxjava3 Completable
instance, discarding
potential mono value through the provided Consumer
(to be used in a
similar fashion to Mono.doOnDiscard(Class, Consumer)
hook).Mono
instance into an Rxjava3 Flowable
instance, allowing micro-fusion
and backpressure propagation to occur between the two libraries.Mono
instance into an RxJava 3 Maybe
.Mono
instance into an Rxjava3 Single
.Observable
into a Flux
and let that flux deal with
backpressure by first turning it into a Flowable
with the given RxJava3
BackpressureStrategy
.Scheduler
.Single
into a Mono
instance.