11 releases

0.3.3 Mar 14, 2024
0.3.2 Mar 6, 2024
0.3.1 Jan 21, 2024
0.3.0 Dec 28, 2023
0.1.3 Apr 22, 2023

#200 in Concurrency

Download history 4/week @ 2024-01-13 41/week @ 2024-02-17 52/week @ 2024-02-24 171/week @ 2024-03-02 161/week @ 2024-03-09 60/week @ 2024-03-16 19/week @ 2024-03-23 43/week @ 2024-03-30 10/week @ 2024-04-06 1/week @ 2024-04-13

82 downloads per month

MIT license

56KB
957 lines

Actify

Note that this crate is under construction. Although used in production, work is done on making an intuitive API, documententation and remaining features. For the time being, this does not follow semantic versioning!

Actify is an actor model built on Tokio that allows annotating any regular implementation block of your own type with the actify! macro.

Crates.io License Docs

Benefits

By generating the boilerplate code for you, a few key benefits are provided:

  • Async actor model build on Tokio and channels, which can keep arbitrary owned data types.
  • Atomic access and mutation of underlying data through clonable handles.
  • Typed arguments and return values on the methods from your actor, exposed through each handle.
  • No need to manually define message structs or enums!
  • Generic methods like get() and set() even without using the macro.

Example

Consider the following example, in which you want to turn your custom Greeter into an actor:

use actify::{Handle, actify};

#[derive(Clone, std::fmt::Debug)]
struct Greeter {}

#[actify]
impl Greeter {
    fn say_hi(&self, name: String) -> String {
        format!("hi {}", name)
    }
}

#[tokio::main]
async fn main() {
// An actify handle is created and initialized with the Greeter struct
let handle = Handle::new(Greeter {});

// The say_hi method is made available on its handle through the actify! macro
let greeting = handle.say_hi("Alfred".to_string()).await.unwrap();

// The method is executed remotely on the initialized Greeter and returned through the handle
assert_eq!(greeting, "hi Alfred".to_string())
}

Dependencies

~3–10MB
~92K SLoC