Any
type). Generic messages are allowed.```rust use xactor::*;
struct ToUppercase(String);
struct MyActor;
impl Actor for MyActor {}
impl Handler
async fn main() -> Result<()> { // Start actor and get its address let mut addr = MyActor.start().await?;
// Send message `ToUppercase` to actor via addr
let res = addr.call(ToUppercase("lowercase".to_string())).await?;
assert_eq!(res, "LOWERCASE");
Ok(())
} ```
| |Wait for response|Send only| |--------|-----------------|---------| |Actix | 1548 ms| 14 ms| |Xactor | 930 ms| 18 ms|
Xactor requires async-trait on userland.
With cargo add installed, run:
sh
$ cargo add xactor
$ cargo add async-trait
We also provide the tokio runtime instead of async-std. To use it, you need to activate runtime-tokio
and disable default features.
You can edit your Cargo.toml
as follows:
toml
xactor = { version = "x.x.x", features = ["runtime-tokio"], default-features = false }