Skip to main content

appletheia_application/outbox/
outbox_relay_config.rs

1use super::{
2    OutboxBatchSize, OutboxLeaseDuration, OutboxPollingOptions, OutboxRelayInstance,
3    OutboxRetryOptions,
4};
5
6#[derive(Clone, Debug, PartialEq)]
7pub struct OutboxRelayConfig {
8    pub instance: OutboxRelayInstance,
9    pub batch_size: OutboxBatchSize,
10    pub lease_duration: OutboxLeaseDuration,
11    pub retry_options: OutboxRetryOptions,
12    pub polling_options: OutboxPollingOptions,
13}