Skip to main content

appletheia_application/outbox/
outbox_retry_options.rs

1use super::{OutboxMaxAttempts, OutboxRetryDelay};
2
3#[derive(Copy, Clone, Debug, Eq, PartialEq)]
4pub struct OutboxRetryOptions {
5    pub backoff: OutboxRetryDelay,
6    pub max_attempts: OutboxMaxAttempts,
7}