The advantage is that you have a choice of what ki...
# coroutines
e
The advantage is that you have a choice of what kind of future you’d like to get. For example you can do
mono { chan.toList() }
to get
Mono<List<T>>
if your code is based on Project Reactor.
👍 2