David Smith
09/14/2021, 9:34 AMcoroutineScope.launch {
for (msg in cmdChannel) {
(executeCommand(msg) as Publisher<B>).collect {
coroutineScope.launch {
applicationChannel.send(it)
}
}
}
}