are Kotlin’s reactive style coroutines ALWAYS hot?...
# coroutines
z
are Kotlin’s reactive style coroutines ALWAYS hot? I’d prefer cold behavior, or at the very least a
ReceiveChannel<T>
that would allow me to line up a bunch of operator logic (
.map()
,
.filter()
) BEFORE subscribing?