mplatvoet
10/16/2015, 7:04 PMroot(maxConcurrent = 3).async {
// child of root
async {...}
//should also work for
//nested functions
foo()
} success {
//should be called when all children have finished
}
fun foo() = async {…}