atomr-core 0.3.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
//! Higher-level patterns on top of the core actor primitives.

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, CircuitBreakerError, CircuitBreakerState};
pub use pipe_to::pipe_to;
pub use retry::{retry, RetrySchedule};