pub trait TokioGlobalSpawnExt<A: Actor> {
    fn spawn_global(self) -> Address<A>;
}
Expand description

An extension trait used to allow ergonomic spawning of an actor onto the global runtime.

Required Methods

Spawn the actor onto the global runtime

Implementors