Structs§
- Wrapper on top of a generic actor to make it implement actix::Actor trait. The wrapped actor should implement the Handler trait for all the messages it would like to handle. ActixWrapper is then used to create an actix actor that implements the CanSend trait.
Functions§
- Spawns an actix actor with the given actor. Returns the address of the actor and the arbiter Note that the actor should implement the Handler trait for all the messages it would like to handle.