[−][src]Struct actix_web::actix::Supervisor
Actor supervisor
Supervisor manages incoming message for actor. In case of actor failure,
supervisor creates new execution context and restarts actor lifecycle.
Supervisor does not re-create actor, it just calls restarting()
method.
Supervisor has same lifecycle as actor. In situation when all addresses to supervisor get dropped and actor does not execute anything, supervisor terminates.
Supervisor
can not guarantee that actor successfully process incoming
message. If actor fails during message processing, this message can not be
recovered. Sender would receive Err(Cancelled)
error in this situation.
Example
#[derive(Message)] struct Die; struct MyActor; impl Actor for MyActor { type Context = Context<Self>; } // To use actor with supervisor actor has to implement `Supervised` trait impl actix::Supervised for MyActor { fn restarting(&mut self, ctx: &mut Context<MyActor>) { println!("restarting"); } } impl Handler<Die> for MyActor { type Result = (); fn handle(&mut self, _: Die, ctx: &mut Context<MyActor>) { ctx.stop(); } } fn main() { System::run(|| { let addr = actix::Supervisor::start(|_| MyActor); addr.do_send(Die); }); }
Methods
impl<A> Supervisor<A> where
A: Supervised<Context = Context<A>> + Actor,
[src]
A: Supervised<Context = Context<A>> + Actor,
pub fn start<F>(f: F) -> Addr<A> where
A: Actor<Context = Context<A>>,
F: FnOnce(&mut <A as Actor>::Context) -> A + 'static,
[src]
A: Actor<Context = Context<A>>,
F: FnOnce(&mut <A as Actor>::Context) -> A + 'static,
Start new supervised actor in current tokio runtime.
Type of returned address depends on variable type. For example to get
Addr<Syn, _>
of newly created actor, use explicitly Addr<Syn, _>
type as type of a variable.
struct MyActor; impl Actor for MyActor { type Context = Context<Self>; } // Get `Addr` of a MyActor actor let addr = actix::Supervisor::start(|_| MyActor);
pub fn start_in_arbiter<F>(sys: &Addr<Arbiter>, f: F) -> Addr<A> where
A: Actor<Context = Context<A>>,
F: FnOnce(&mut Context<A>) -> A + Send + 'static,
[src]
A: Actor<Context = Context<A>>,
F: FnOnce(&mut Context<A>) -> A + Send + 'static,
Start new supervised actor in arbiter's thread.
Trait Implementations
impl<A> Debug for Supervisor<A> where
A: Debug + Supervised<Context = Context<A>> + Actor,
[src]
A: Debug + Supervised<Context = Context<A>> + Actor,
Auto Trait Implementations
impl<A> !Send for Supervisor<A>
impl<A> !Sync for Supervisor<A>
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<F> IntoFuture for F where
F: Future,
[src]
F: Future,
type Future = F
The future that this type can be converted into.
type Item = <F as Future>::Item
The item that the future may resolve with.
type Error = <F as Future>::Error
The error that the future may resolve with.
fn into_future(self) -> F
[src]
impl<T> Erased for T
impl<T> FutureExt for T where
T: Future + ?Sized,
[src]
T: Future + ?Sized,
fn timeout(self, timeout: Duration) -> Timeout<Self>
[src]
Creates a new future which allows self
until timeout
. Read more
impl<F, A> WrapFuture for F where
A: Actor,
F: Future,
[src]
A: Actor,
F: Future,
type Future = FutureWrap<F, A>
The future that this type can be converted into.
type Item = <F as Future>::Item
The item that the future may resolve with.
type Error = <F as Future>::Error
The error that the future may resolve with.