atomr_core/pattern/mod.rs
1//! Higher-level patterns on top of the core actor primitives.
2//! akka.net: `src/core/Akka/Pattern`.
3
4mod ask;
5mod backoff;
6mod circuit_breaker;
7mod pipe_to;
8mod retry;
9
10pub use ask::ask;
11pub use backoff::{BackoffOptions, BackoffSupervisor};
12pub use circuit_breaker::{CircuitBreaker, CircuitBreakerState};
13pub use pipe_to::pipe_to;
14pub use retry::{retry, RetrySchedule};