5 releases (3 breaking)

0.7.1 Jun 4, 2020
0.7.0 Jun 3, 2020
0.6.6 Jun 2, 2020
0.2.0 Feb 20, 2020
0.1.0 Feb 18, 2020

#107 in #async-std

Download history 46/week @ 2023-12-04 57/week @ 2023-12-11 80/week @ 2023-12-18 39/week @ 2023-12-25 52/week @ 2024-01-01 75/week @ 2024-01-08 64/week @ 2024-01-15 51/week @ 2024-01-22 31/week @ 2024-01-29 48/week @ 2024-02-05 80/week @ 2024-02-12 70/week @ 2024-02-19 82/week @ 2024-02-26 83/week @ 2024-03-04 90/week @ 2024-03-11 95/week @ 2024-03-18

352 downloads per month
Used in 3 crates (via xactor)

MIT license

5KB
58 lines

Xactor is a rust actors framework based on async-std

Documentation

Features

  • Async actors.
  • Actor communication in a local context.
  • Using Futures for asynchronous message handling.
  • Typed messages (No Any type). Generic messages are allowed.

Examples

use xactor::*;

#[message(result = "String")]
struct ToUppercase(String);

struct MyActor;

impl Actor for MyActor {}

#[async_trait::async_trait]
impl Handler<ToUppercase> for MyActor {
    async fn handle(&mut self, _ctx: &mut Context<Self>, msg: ToUppercase) -> String {
        msg.0.to_uppercase()
    }
}

#[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

https://github.com/sunli829/xactor-benchmarks

Installation

Xactor requires async-trait on userland.

With cargo add installed, run:

$ 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:

xactor = { version = "x.x.x", features = ["runtime-tokio"], default-features = false }

References

Dependencies

~1.5MB
~35K SLoC