A lightweight, ergonomic and unconventional actor crate.
toml
[dependencies]
vin = "3.1"
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), tracing
(for diagnostics), async_trait
and anyhow
(as the handler error type).
Basic usage of vin
.
```rust use std::time::Duration; use tracing::Level; use vin::*;
pub enum Msg { Foo, Bar, Baz, }
struct MyActor { pub number: u32, }
impl vin::LifecycleHook for MyActor {}
impl vin::Handler
Ok(())
}
}
async fn main() { tracingsubscriber::fmt() .withmax_level(Level::TRACE) .init();
let ctx = VinContextMyActor { number: 42 };
let actor = MyActor::new("test", ctx).start().await.unwrap();
actor.send(Msg::Bar).await;
tokio::time::sleep(Duration::from_millis(500)).await;
vin::shutdown();
vin::wait_for_shutdowns().await;
} ```
Basic usage of task actors in vin
.
```rust use std::time::Duration; use tracing::Level; use vin::*;
struct MyTaskActor { pub number: u32, }
impl vin::Task for MyTaskActor { async fn task(self) -> anyhow::Result<()> { for i in 0..self.number { tracing::info!("{}. iteration", i); }
Ok(())
}
}
async fn main() { tracingsubscriber::fmt() .withmax_level(Level::TRACE) .init();
MyTaskActor{ number: 5 }.start("test_task").await;
tokio::time::sleep(Duration::from_millis(100)).await;
vin::shutdown();
vin::wait_for_shutdowns().await;
} ```
This project is licensed under the MIT license.