mm1_node/
runtime.rs

1pub mod actor_key;
2pub mod config;
3pub mod runnable;
4
5mod container;
6mod context;
7mod mq;
8mod registry;
9mod rt;
10mod rt_api;
11mod sys_call;
12mod sys_msg;
13mod system;
14
15pub use context::ActorContext;
16pub use rt::Rt;
17use runnable::BoxedRunnable;
18pub type Local = BoxedRunnable<ActorContext>;