1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
//! # telecomande
//!
//! A small crate providing a primitive for the execution of asynchronous tasks by managers through signals.
//!
//! ## Example:
//! ```
//! #[tokio::main]
//! async fn main() {
//! #[derive(Debug)]
//! pub enum Signal {
//! Greet,
//! Say(String),
//! }
//!
//! pub struct Mgr {
//! greeting: String,
//! }
//! #[telecomande::async_trait]
//! impl telecomande::Manager for Mgr {
//! type Signal = Signal;
//! async fn handle(&mut self, signal: Self::Signal) {
//! match signal {
//! Signal::Greet => println!("{}", self.greeting),
//! Signal::Say(text) => println!("{text}"),
//! }
//! }
//! }
//!
//! let manager = Mgr {
//! greeting: "Hello".into(),
//! };
//! let handle = telecomande::spawn(manager);
//!
//! let remote = handle.remote();
//! tokio::spawn(async move {
//! remote.send(Signal::Greet).unwrap();
//! remote.send(Signal::Say("telecomande".into())).unwrap();
//! })
//! .await
//! .unwrap();
//!
//! // out:
//! // Hello
//! // telecomande
//! }
//! ```
pub use async_trait;
pub use SimpleExecutor;
pub use Handle;
pub use Remote;
pub use ;