rakka-core 0.2.0

rakka core — actor system, dispatchers, mailboxes, scheduler, routing, IO.
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};