24 releases

0.6.0 Feb 2, 2024
0.5.2 Jun 13, 2022
0.5.1 Mar 23, 2021
0.5.0-beta.5 Sep 13, 2020
0.2.6 Mar 18, 2020

#128 in Asynchronous

Download history 37/week @ 2024-01-01 29/week @ 2024-01-08 10/week @ 2024-01-15 9/week @ 2024-01-22 31/week @ 2024-01-29 25/week @ 2024-02-05 42/week @ 2024-02-12 44/week @ 2024-02-19 72/week @ 2024-02-26 275/week @ 2024-03-04 277/week @ 2024-03-11 158/week @ 2024-03-18 21/week @ 2024-03-25 233/week @ 2024-04-01 28/week @ 2024-04-08 50/week @ 2024-04-15

338 downloads per month
Used in 4 crates

MPL-2.0 license

125KB
2.5K SLoC

Continuous integration docs.rs Matrix

xtra

A tiny, fast, and safe actor framework. It is modelled around Actix (copyright and license here).

Features

  • Safe: there is no unsafe code in xtra.
  • Tiny: xtra is only around 2000 LoC.
  • Lightweight: xtra has few dependencies, most of which are lightweight (except futures).
  • Asynchronous Handler interface which allows async/await syntax with &mut self.
  • Does not depend on its own runtime and can be run with any futures executor. Convenience spawn functions are provided for Tokio, async-std, smol, and wasm-bindgen-futures.
  • Quite fast. Running on Tokio, <170ns time from sending a message to it being processed for sending without waiting for a result on my development machine with an AMD Ryzen 3 3200G.

Example

use xtra::prelude::*;

#[derive(Default, xtra::Actor)]
struct Printer {
    times: usize,
}

struct Print(String);

impl Handler<Print> for Printer {
    type Return = ();

    async fn handle(&mut self, print: Print, _ctx: &mut Context<Self>) {
        self.times += 1;
        println!("Printing {}. Printed {} times so far.", print.0, self.times);
    }
}

#[tokio::main]
async fn main() {
    let addr = xtra::spawn_tokio(Printer::default(), None);
    loop {
        addr.send(Print("hello".to_string()))
            .await
            .expect("Printer should not be dropped");
    }
}

For a longer example, check out Vertex, a chat application written with xtra and spaad on the server.

Okay, sounds great! How do I use it?

Check out the docs and the examples to get started! Enabling the tokio, async_std, smol, or wasm_bindgen features is recommended in order to enable some convenience methods (such as xtra::spawn_tokio). Which you enable will depend on which executor you want to use (check out their docs to learn more about each). If you have any questions, feel free to open an issue or message me on the Rust discord.

Keep in mind that xtra has a MSRV of 1.60.0.

Cargo features

  • async_std: enables integration with async-std.
  • smol: enables integration with smol. Note that this requires smol 1.1 as 1.1 had a minor breaking change from 1.0 which leads to xtra no longer compiling on 1.0 and 1.1 simultaneously.
  • tokio: enables integration with tokio.
  • wasm_bindgen: enables integration with wasm-bindgen, and particularly its futures crate.
  • instrumentation: Adds a dependency on tracing and creates spans for message sending and handling on actors.
  • sink: Adds Address::into_sink and MessageChannel::into_sink.
  • macros: Enables the Actor custom derive macro.

Latest Breaking Changes

To see the breaking changes for each version, see here. The latest version is 0.6.0.

Dependencies

~0.8–16MB
~167K SLoC