[][src]Struct actix::sync::SyncContext

pub struct SyncContext<A> where
    A: Actor<Context = SyncContext<A>>, 
{ /* fields omitted */ }

Sync actor execution context. This is used instead of impl Actor for your Actor instead of Context, if you intend this actor to run in a SyncArbiter.

Unlike Context, an Actor that uses a SyncContext can not be stopped by calling stop or terminate: Instead, these trigger a restart of the Actor. Similar, returning false from fn stopping can not prevent the restart or termination of the Actor.

Example

use actix::prelude::*;



struct SyncActor;

impl Actor for SyncActor {
    // It's important to note that you use "SyncContext" here instead of "Context".
    type Context = SyncContext<Self>;
}

Trait Implementations

impl<A> ActorContext for SyncContext<A> where
    A: Actor<Context = Self>, 
[src]

fn stop(&mut self)[src]

Stop the current Actor. SyncContext will stop the existing Actor, and restart a new Actor of the same type to replace it.

fn terminate(&mut self)[src]

Terminate the current Actor. SyncContext will terminate the existing Actor, and restart a new Actor of the same type to replace it.

fn state(&self) -> ActorState[src]

Get the Actor execution state.

impl<A, M> ToEnvelope<A, M> for SyncContext<A> where
    A: Actor<Context = Self> + Handler<M>,
    M: Message + Send + 'static,
    M::Result: Send
[src]

Auto Trait Implementations

impl<A> !RefUnwindSafe for SyncContext<A>

impl<A> !Send for SyncContext<A>

impl<A> !Sync for SyncContext<A>

impl<A> Unpin for SyncContext<A>

impl<A> !UnwindSafe for SyncContext<A>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,