actify

Crates.ioactify
lib.rsactify
version0.4.2
sourcesrc
created_at2023-04-09 10:02:43.21533
updated_at2024-05-17 08:46:07.29321
descriptionAn intutive actor model with minimal boilerplate
homepage
repositoryhttps://github.com/AvalorAI/actify
max_upload_size
id834066
size58,217
Maurits (av-maurits)

documentation

https://docs.rs/actify/latest/actify/

README

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())
}
Commit count: 122

cargo fmt