Skip to main content

Dispatching

Trait Dispatching 

Source
pub trait Dispatching {
    // Required method
    fn dispatcher_ref(&self) -> ActorRefStrong<DispatchEnvelope>;
}
Expand description

A trait for accessing dispatcher references

Required Methods§

Source

fn dispatcher_ref(&self) -> ActorRefStrong<DispatchEnvelope>

Returns the associated dispatcher reference.

Implementors§

Source§

impl Dispatching for ContextSystemHandle

Available on crate feature distributed only.
Source§

impl Dispatching for DispatchingPath<'_, '_>

Source§

impl Dispatching for KompactSystem

Available on crate feature distributed only.
Source§

impl<CD> Dispatching for CD
where CD: ComponentTraits,

Available on crate feature distributed only.