armature 0.1.1

An event-driven stateful actor framework for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# Armature

Armature is an event-driven stateful actor framework for Rust.

## What does that mean?

- **Event-driven:** events are the driving force behind any change to the 
system state. Events are gathered in a queue and dispatched to the actors.
- **Stateful actor:** every actor contains a hierarchical state machine 
that processes incoming events.

See the example for how to use.