tyra 1.0.0

Typed Actor System
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::message::actor_message::{DefaultActorMessage};

pub struct ActorStopMessage {}

impl ActorStopMessage {
    pub fn new() -> Self {
        Self {}
    }
}

impl DefaultActorMessage for ActorStopMessage {}