Package kotlinx.coroutines.experimental.reactor
Utilities for Reactor.
Types
open class SchedulerCoroutineDispatcher : Implements CoroutineDispatcher on top of an arbitrary Scheduler. |
Extensions for External Classes
Functions
fun <T> flux( Creates cold reactive Flux that runs a given block in a coroutine.
Every time the returned flux is subscribed, it starts a new coroutine in the specified context.
Coroutine emits items with |
|
fun <T> mono( Creates cold mono that will run a given block in a coroutine. Every time the returned mono is subscribed, it starts a new coroutine. Coroutine returns a single, possibly null value. Unsubscribing cancels running coroutine. |