Xactor is a rust actors framework based on async-std

Crates.io version Download docs.rs docs

Documentation

Features

Examples

```rust use xactor::*;

[message(result = "String")]

struct ToUppercase(String);

struct MyActor;

impl Actor for MyActor {}

[asynctrait::asynctrait]

impl Handler for MyActor { async fn handle(&mut self, ctx: &Context, msg: ToUppercase) -> String { msg.0.touppercase() } }

[xactor::main]

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(())

} ```

Performance

| |Wait for response|Send only| |--------|-----------------|---------| |Actix | 1548 ms| 14 ms| |Xactor | 930 ms| 18 ms|

GitHub repository

Installation

Xactor require async-trait on useland

With cargo add installed run:

sh $ cargo add xactor $ cargo add async-trait

We also provide a set of "tokio-runtime" features instead of async-std. to use it you need activate feautre: runtime-tokio and desable default.

You can edit your Cargo.toml has following: xactor = { version = "x.x.x", features = ["runtime-tokio"], default-features = false }

References