appletheia_application/outbox/
outbox_retry_options.rs1use super::{OutboxMaxAttempts, OutboxRetryDelay};
2
3#[derive(Copy, Clone, Debug, Eq, PartialEq)]
4pub struct OutboxRetryOptions {
5 pub backoff: OutboxRetryDelay,
6 pub max_attempts: OutboxMaxAttempts,
7}