Module async_executors::exec
source · [−]Expand description
The executor implementations.
Structs
An executor that spawns tasks on async-std. In contrast to the other executors, this one is not self contained, because async-std does not provide an API that allows that, so the threadpool is global.
An executor that uses tokio::runtime::Runtime.
Builder to create a TokioTp
executor. This guarantees that TokioTp
always has a runtime that is multi-threaded,
as tokio does not make this information available on it’s Runtime
type.