Trait for interactiving with schedule, which can be derived by `#[derive(Actor)]`.
| 50 | |
| 51 | /// Trait for interactiving with schedule, which can be derived by `#[derive(Actor)]`. |
| 52 | pub trait Actor: Node + Send + 'static { |
| 53 | /// Run the actor |
| 54 | fn start(self: Box<Self>, _: Context, _: ResourceCollection) -> JoinHandle<Result<()>> { |
| 55 | unimplemented!() |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | pub(crate) fn load_static( |
| 60 | local_key: u64, |
nothing calls this directly
no outgoing calls
no test coverage detected