interface ExecutionContext
Technical interface for threading model.
Allows intrhead or real async execution.
execute |
abstract fun <T> execute(f: () -> T): Future<T> |
ExecutorExecutionContext |
class ExecutorExecutionContext : ExecutionContext |
SyncExecutionContext |
In thread execution (immediate). class SyncExecutionContext : ExecutionContext |