atomr-core 0.1.0

Actors, supervision, dispatch, mailboxes, scheduler, FSM, event stream, and coordinated shutdown — the core of the atomr actor runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Higher-level patterns on top of the core actor primitives.
//! akka.net: `src/core/Akka/Pattern`.

mod ask;
mod backoff;
mod circuit_breaker;
mod pipe_to;
mod retry;

pub use ask::ask;
pub use backoff::{BackoffOptions, BackoffSupervisor};
pub use circuit_breaker::{CircuitBreaker, CircuitBreakerState};
pub use pipe_to::pipe_to;
pub use retry::{retry, RetrySchedule};