Struct actix::registry::SystemRegistry
source · pub struct SystemRegistry { /* private fields */ }
Expand description
System wide actors registry
System registry serves same purpose as Registry, except it is shared across all arbiters.
§Examples
use actix::prelude::*;
#[derive(Message)]
#[rtype(result = "()")]
struct Ping;
#[derive(Default)]
struct MyActor1;
impl Actor for MyActor1 {
type Context = Context<Self>;
}
impl actix::Supervised for MyActor1 {}
impl SystemService for MyActor1 {
fn service_started(&mut self, ctx: &mut Context<Self>) {
println!("Service started");
}
}
impl Handler<Ping> for MyActor1 {
type Result = ();
fn handle(&mut self, _: Ping, ctx: &mut Context<Self>) {
println!("ping");
}
}
struct MyActor2;
impl Actor for MyActor2 {
type Context = Context<Self>;
fn started(&mut self, _: &mut Context<Self>) {
let act = MyActor1::from_registry();
act.do_send(Ping);
}
}
#[actix::main]
async fn main() {
// Start MyActor2
let addr = MyActor2.start();
}
Implementations§
source§impl SystemRegistry
impl SystemRegistry
sourcepub fn get<A: SystemService + Actor<Context = Context<A>>>(&mut self) -> Addr<A>
pub fn get<A: SystemService + Actor<Context = Context<A>>>(&mut self) -> Addr<A>
Return address of the service. If service actor is not running it get started in the system.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SystemRegistry
impl !RefUnwindSafe for SystemRegistry
impl Send for SystemRegistry
impl !Sync for SystemRegistry
impl Unpin for SystemRegistry
impl !UnwindSafe for SystemRegistry
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more