pub type ActorFactory = Arc<dyn Fn() -> Box<dyn Actor> + Send + Sync + 'static>;
Factory that produces a fresh boxed Actor on each invocation.
Actor
pub struct ActorFactory { /* private fields */ }