sealrs 0.13.2

Set of classic asynchronous primitives (Actors, Executors, Futures / Promises)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::actors::prelude::*;
use super::ticker;
use std::thread;

pub fn run() {
    let mut system = LocalActorSystem::new();

    let mut _ticker = system
        .actor_of(ticker::props(), None);

    thread::park();
}