xtra

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

Features

Caveats

Example

```rust

![feature(typealiasimpltrait, genericassociated_types)]

use futures::Future; use xtra::prelude::*;

struct Printer { times: usize, }

impl Printer { fn new() -> Self { Printer { times: 0 } } }

impl Actor for Printer {}

struct Print(String);

impl Message for Print { type Result = (); }

// In the real world, the synchronous SyncHandler trait would be better-suited (and is a few ns faster) impl Handler for Printer { type Responder<'a> = impl Future

fn handle(&mut self, print: Print, _ctx: &mut Context<Self>) -> Self::Responder<'_> {
    async move {
        self.times += 1; // Look ma, no ActorFuture!
        println!("Printing {}. Printed {} times so far.", print.0, self.times);
    }
}

}

[tokio::main]

async fn main() { let addr = Printer::new().spawn(); 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 (on the server).

Okay, sounds great! How do I use it?

Check out the docs and the examples to get started! Enabling the with-tokio-0_2 or with-async_std-1 features are recommended in order to enable some convenience methods (such as Actor::spawn). 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.

Latest Breaking Changes

From version 0.1.x to 0.2.0: - Removal of the with-runtime feature - How to upgrade: You probably weren't using this anyway, but rather use with-tokio-* or with-async_std-* instead. - Address methods were moved to AddressExt to accommodate new Address types - How to upgrade: add use xtra::AddressExt to wherever address methods are used (or, better yet, use xtra::prelude::*). - All *_async methods were removed. Asynchronous and synchronous messages now use the same method for everything. - How to upgrade: simply switch from the [x]_async method to the [x] method. - AsyncHandler was renamed to Handler, and the old Handler to SyncHandler. Also, a Handler and SyncHandler implementation can no longer coexist. - How to upgrade: rename all Handler implementations to SyncHandler, and all AsyncHandler implementations to Handler.

See the full list of breaking changes by version here

To do