pub trait Dispatching {
// Required method
fn dispatcher_ref(&self) -> ActorRefStrong<DispatchEnvelope>;
}Expand description
A trait for accessing dispatcher references
Required Methods§
Sourcefn dispatcher_ref(&self) -> ActorRefStrong<DispatchEnvelope>
fn dispatcher_ref(&self) -> ActorRefStrong<DispatchEnvelope>
Returns the associated dispatcher reference.
Implementors§
impl Dispatching for ContextSystemHandle
Available on crate feature
distributed only.impl Dispatching for DispatchingPath<'_, '_>
impl Dispatching for KompactSystem
Available on crate feature
distributed only.impl<CD> Dispatching for CDwhere
CD: ComponentTraits,
Available on crate feature
distributed only.