arrows 0.1.16

An actor framework in rust with message durability and ingestion order processing of of messages
Documentation
1
2
3
4
5
6
7
use arrows::send;
use arrows::Addr;
use arrows::Msg;

fn main() {
    let _rs = send!(Addr::listen_addr(), Msg::shutdown());
}