elizarov
12/20/2016, 10:13 AMgo{...}
builder that dispatches your coroutines on a mutlithreaded pool Go-style. It means, that if you do go { oneComputation() }
and go { anotherComputation() }
then both computations can potentially run concurrent in different threads (just like in Go), so if there is a shared mutable state between them, then you have to be careful.