Crates.io | actify |
lib.rs | actify |
version | 0.5.1 |
source | src |
created_at | 2023-04-09 10:02:43.21533 |
updated_at | 2024-11-05 09:41:00.356728 |
description | An intutive actor model with minimal boilerplate |
homepage | |
repository | https://github.com/AvalorAI/actify |
max_upload_size | |
id | 834066 |
size | 60,815 |
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.
By generating the boilerplate code for you, a few key benefits are provided:
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())
}