dragas
08/28/2017, 12:56 PMCommonPool even after it has called close() on itself?
For example
fun doThings() : ProducerJob<Foo> = produce(CommonPool)
{
println("I am do things!")
delay(1000)
send(Foo())
close()
}elizarov
08/28/2017, 2:19 PMclose at the end, as it is implicitly performed when the produce coroutine completesdragas
08/29/2017, 7:22 AM