A macro to generate Rust actors
This library is in progress, there may be breaking changes.
derive_aktor
provides a macro that turns your normal synchronous rust code into actor oriented async code, with
just a line of code. You can think of actors sort of like Queues that hold state and, in the case of this library,
provide a richer API than just send
and recv
.
Actors can also have generic methods or state.
Here's a simple example of a "KeyValueStore". We can interact with it asynchronously,
share it across threads,
```rust
pub struct KeyValueStore
where U: Hash + Eq + Send + 'static
{
innerstore: HashMap,
selfactor: Option
impl
impl
pub fn set(&mut self, key: U, value: String) {
println!("set");
self.inner_store.insert(key, value);
}
}
async fn main() {
let (kv_store, handle) = KeyValueStoreActor::new(KeyValueStore::new()).await;
kv_store.query("foo", Box::new(|value| println!("before {:?}", value))).await;
kv_store.set("foo", "bar".to_owned()).await;
kv_store.query("foo", Box::new(|value| println!("after {:?}", value))).await;
// Equivalent to 'drop', but necessary if we had never used 'kv_store'
kv_store.release();
handle.await;
}
```