joinWith

inline suspend fun <T : Application> T.joinWith(block: T.() -> Unit)(source)

执行完 block 后挂起当前 Application

app.joinWith { // this: Application
// ...
}

See also