pub trait ActorPathFactory {
// Required method
fn actor_path(&self) -> ActorPath;
}Expand description
A factory trait for things that have associated actor paths.
Required Methods§
Sourcefn actor_path(&self) -> ActorPath
fn actor_path(&self) -> ActorPath
Returns the associated actor path.
Implementors§
impl ActorPathFactory for DispatchingPath<'_, '_>
impl ActorPathFactory for KompactSystem
Available on crate feature
distributed only.impl<CD> ActorPathFactory for ComponentContext<CD>where
CD: ComponentTraits + ComponentLifecycle,
Available on crate feature
distributed only.impl<CD> ActorPathFactory for CDwhere
CD: ComponentTraits,
Available on crate feature
distributed only.