Indeed, an actor library, not a framework, written in Rust
Cargo.toml
toml
[dependencies]
actorlib = "1.0.0"
echo.rs
```rust
pub struct Echo;
pub enum Message { Ping, }
pub enum Response { Pong {counter: u32}, }
pub struct State { pub counter: u32, }
pub enum EchoError { #[error("unknown error")] Unknown, #[error("std::io::Error")] StdErr(#[from] std::io::Error), }
impl Handler
main.rs
```rust
async fn main() -> Result<(), EchoError> { let state = State { counter: 0, };
let echo_ref = ActorRef::new("echo".to_string(), Echo{}, state, 100000).await;
println!("Sent Ping");
echo_ref.send(Message::Ping).await?;
println!("Sent Ping and ask response");
let pong = echo_ref.ask(Message::Ping).await?;
println!("Got {:?}", pong);
_ = echo_ref.stop();
thread::sleep(std::time::Duration::from_secs(1));
Ok(())
} ```
Example output:
text
Sent Ping
Sent Ping and ask response
Received Ping
Received Ping
Got Pong { counter: 2 }
Example sources: https://github.com/evgenyigumnov/actor-lib/tree/main/test