Enum jsonrpc_server_utils::reactor::UninitializedExecutor [−][src]
pub enum UninitializedExecutor {
Shared(TaskExecutor),
Unspawned,
}
Expand description
Possibly uninitialized event loop executor.
Variants
Shared instance of executor.
Event Loop should be spawned by the transport.
Implementations
Initializes executor.
In case there is no shared executor, will spawn a new event loop.
Dropping Executor
closes the loop.