runInNoScopeBlocking

fun <T> runInNoScopeBlocking(context: CoroutineContext = DefaultBlockingContext, block: suspend () -> T): T(source)

在simbot中提供的 runBlocking 包装。

在默认未提供上下文的情况下,runInBlocking 所使用的 contextDefaultBlockingContext.

See also

Throws

原函数可能被抛出的任何异常

当出现执行 block 过程中由于 future 或线程中断等非 block 本身产生的异常时被包装为 RunInBlockingException