Crates.io | xactor |
lib.rs | xactor |
version | 0.7.11 |
source | src |
created_at | 2020-02-18 06:57:16.784652 |
updated_at | 2020-12-29 06:51:37.353842 |
description | Xactor is a rust actors framework based on async-std |
homepage | https://github.com/sunli829/xactor |
repository | https://github.com/sunli829/xactor |
max_upload_size | |
id | 210238 |
size | 73,810 |
Any
type). Generic messages are allowed.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(())
}
https://github.com/sunli829/xactor-benchmarks
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 }