abstract fun executeBlocking(: Duration, : () -> Unit): Unit (source)
Execute a task to another thread.
Delay
delay the delay before run
abstract fun executeBlocking(: () -> Unit): Unit (source)
Execute a task to another thread.
abstract fun <T> executeBlocking(: Callable<T>, : (T?) -> Unit): Unit (source)
Execute a task to another thread. If an exception is thrown by the blocking function, null is passed to the result function.