```// still with channel subscription.consumeEach ...
# kroto-plus
m
Copy code
// still with channel
subscription.consumeEach {
    responseChannel.send(it)
}
//or with flow
subscription.consumeAsFlow().collect {
    responseChannel.send(it)
}
👍 1