[][src]Struct riker::actors::ActorSystem

pub struct ActorSystem<Msg: Message> {
    pub proto: Arc<ProtoSystem>,
    pub kernel: Option<KernelRef<Msg>>,
    pub event_store: Option<ActorRef<Msg>>,
    pub sys_channels: Option<SysChannels<Msg>>,
    // some fields omitted
}

The actor runtime and common services coordinator

The ActorSystem provides a runtime on which actors are executed. It also provides common services such as channels, persistence and scheduling. The ActorSystem is the heart of a Riker application, starting serveral threads when it is created. Create only one instance of ActorSystem per application.

Fields

proto: Arc<ProtoSystem>kernel: Option<KernelRef<Msg>>event_store: Option<ActorRef<Msg>>sys_channels: Option<SysChannels<Msg>>

Methods

impl<Msg: Message> ActorSystem<Msg>[src]

pub fn new<Mdl>(model: &Mdl) -> Result<ActorSystem<Msg>, SystemError> where
    Mdl: Model<Msg = Msg>, 
[src]

Create a new ActorSystem instance

Requires a type that implements the Model trait.

pub fn with_name<Mdl>(
    model: &Mdl,
    name: &str
) -> Result<ActorSystem<Msg>, SystemError> where
    Mdl: Model<Msg = Msg>, 
[src]

Create a new ActorSystem instance with provided name

Requires a type that implements the Model trait.

pub fn with_config<Mdl>(
    model: &Mdl,
    name: &str,
    cfg: Config
) -> Result<ActorSystem<Msg>, SystemError> where
    Mdl: Model<Msg = Msg>, 
[src]

Create a new ActorSystem instance bypassing default config behavior

Requires a type that implements the Model trait.

pub fn shutdown(&self) -> impl Future[src]

Shutdown the actor system

Attempts a graceful shutdown of the system and all actors. Actors will receive a stop message, executing actor.post_stop.

Does not block. Returns a future which is completed when all actors have successfully stopped.

pub fn start_date(&self) -> &DateTime<Utc>[src]

Returns the system start date

pub fn uptime(&self) -> u64[src]

Returns the number of seconds since the system started

pub fn host(&self) -> Arc<String>[src]

Returns the hostname used when the system started

The host is used in actor addressing.

Currently not used, but will be once system clustering is introduced.

pub fn id(&self) -> Uuid[src]

Returns the UUID assigned to the system

pub fn name(&self) -> String[src]

Returns the name of the system

pub fn print_tree(&self)[src]

pub fn user_root(&self) -> &ActorRef<Msg>[src]

Returns the user root actor reference

pub fn system_root(&self) -> &ActorRef<Msg>[src]

Returns the system root actor reference

pub fn temp_root(&self) -> &ActorRef<Msg>[src]

Reutrns the temp root actor reference

pub fn default_stream(&self) -> &ActorRef<Msg>[src]

Returns a reference to the default stream channel

pub fn event_stream(&self) -> &ActorRef<Msg>[src]

Returns a reference to the event stream channel

pub fn dead_letters(&self) -> &ActorRef<Msg>[src]

Returns a reference to the dead letters channel

pub fn io_manager(&self) -> &ActorRef<Msg>[src]

Returns a reference to the IO Manager

pub fn config(&self) -> Config[src]

Returns the Config used by the system

pub fn sys_actor_of(
    &self,
    props: BoxActorProd<Msg>,
    name: &str
) -> Result<ActorRef<Msg>, CreateError>
[src]

Create an actor under the system root

Trait Implementations

impl<Msg> ActorRefFactory for ActorSystem<Msg> where
    Msg: Message
[src]

type Msg = Msg

impl<Msg> TmpActorRefFactory for ActorSystem<Msg> where
    Msg: Message
[src]

type Msg = Msg

impl<Msg> ActorSelectionFactory for ActorSystem<Msg> where
    Msg: Message
[src]

type Msg = Msg

impl<Msg> Timer for ActorSystem<Msg> where
    Msg: Message
[src]

type Msg = Msg

impl<Msg> ExecutionContext for ActorSystem<Msg> where
    Msg: Message
[src]

impl<Msg: Message> Send for ActorSystem<Msg>[src]

impl<Msg: Message> Sync for ActorSystem<Msg>[src]

impl<Msg: Clone + Message> Clone for ActorSystem<Msg>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<Msg> Debug for ActorSystem<Msg> where
    Msg: Message
[src]

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.