tree: ee50deb227cb6d92f20211e64e151d3cfeba9ff0 [path history] [tgz]
  1. src/
  2. pom.xml
  3. README.md
reactive/kotlinx-coroutines-reactor/README.md

Module kotlinx-coroutines-reactor

Utilities for Reactor.

Coroutine builders:

NameResultScopeDescription
monoMonoCoroutineScopeCold mono that starts coroutine on subscribe
fluxFluxCoroutineScopeCold flux that starts coroutine on subscribe

Note, that Mono and Flux are a subclass of Reactive Streams Publisher and extensions for it are covered by kotlinx-coroutines-reactive module.

Conversion functions:

NameDescription
Job.asMonoConverts job to hot mono
Deferred.asMonoConverts deferred value to hot mono
ReceiveChannel.asFluxConverts streaming channel to hot flux
Scheduler.asCoroutineDispatcherConverts scheduler to CoroutineDispatcher
TimedScheduler.asCoroutineDispatcherConverts scheduler to CoroutineDispatcher supporting [Delay]

Package kotlinx.coroutines.experimental.reactor

Utilities for Reactor.