A lightweight, ergonomic and unconventional actor crate.
toml
[dependencies]
vin = "5.0"
Vin's goal is to be an ergonomic, unconventional actor library. Vin doesn't follow the conventional implementations for actor libraries, but tries to be as simple as possible, while still providing an ergonomic and rich interface by integrating itself with tokio
as much as possible. Each actor gets its own task to poll messages and execute handlers on. Its address is shared by a simple Arc
. Vin also provides a way to gracefully shutdown all actors without having to do the manual labour yourself. Actor data is stored in its actor context and is retrievable for reading with Actor::ctx()
and for writing with Actor::ctx_mut()
which acquire a RwLock
to the data. Vin also provides a "task actor" which is simply a tokio
task spun up and synchronized with Vin's shutdown system.
Vin completely relies on tokio
(for the async runtime), log
(for diagnostics), async_trait
and anyhow
(as the handler error type).
Basic usage of vin
.
```rust use vin::*; use std::time::Duration; use tracing::Level;
pub enum Msg { Foo, Bar, Baz, }
pub struct MsgWithResult;
struct MyActor { pub number: u32, }
impl vin::LifecycleHook for MyActor {}
impl vin::Handler
Ok(())
}
}
impl vin::Handler
async fn main() { tracingsubscriber::fmt() .withmax_level(Level::TRACE) .init();
let ctx = VinContextMyActor { number: 42 };
let actor = MyActor::start("test", ctx).await.unwrap();
actor.send(Msg::Bar).await;
tokio::time::sleep(Duration::from_millis(500)).await;
let res = actor.send_and_wait(MsgWithResult).await.unwrap();
assert_eq!(res, 42);
vin::shutdown();
vin::wait_for_shutdowns().await;
} ```
Basic usage of task actors in vin
.
```rust use vin::*; use std::time::Duration; use tracing::Level;
struct MyTaskActor { pub number: u32, }
impl vin::Task for MyTaskActor { async fn task(self) -> anyhow::Result<()> { for i in 0..self.number { log::info!("{}. iteration", i); }
Ok(())
}
}
async fn main() { tracingsubscriber::fmt() .withmax_level(Level::TRACE) .init();
let ctx = VinContextMyTaskActor { number: 5 };
let actor = MyTaskActor::start("test_task", ctx).await;
tokio::time::sleep(Duration::from_millis(100)).await;
actor.close();
vin::shutdown();
vin::wait_for_shutdowns().await;
} ```
This project is licensed under the MIT license.