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
8
9
10
11
use arrows::send;
use arrows::Addr;
use arrows::Msg;

fn main() {
    //Fire an echo message to the listener - it should reverse the string and send it back if
    //alive
    let m = Msg::echo("This is an echo message back from the listener");
    //let m = Msg::echo("renetsil eht morf kcab egassem ohce na si sihT");
    send!(Addr::listen_addr(), m);
}