diff options
Diffstat (limited to 'src/purgatory/sync/mod.rs')
| -rw-r--r-- | src/purgatory/sync/mod.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/purgatory/sync/mod.rs b/src/purgatory/sync/mod.rs index b29f10e..1ac0cb1 100644 --- a/src/purgatory/sync/mod.rs +++ b/src/purgatory/sync/mod.rs | |||
| @@ -6,8 +6,13 @@ | |||
| 6 | //! - Exponential backoff per identifier (20s → 2m, then 2m intervals) | 6 | //! - Exponential backoff per identifier (20s → 2m, then 2m intervals) |
| 7 | //! - Debouncing for burst event arrivals | 7 | //! - Debouncing for burst event arrivals |
| 8 | 8 | ||
| 9 | mod context; | ||
| 9 | mod queue; | 10 | mod queue; |
| 10 | mod throttle; | 11 | mod throttle; |
| 11 | 12 | ||
| 13 | pub use context::{ProcessResult, SyncContext}; | ||
| 12 | pub use queue::SyncQueueEntry; | 14 | pub use queue::SyncQueueEntry; |
| 13 | pub use throttle::{DomainThrottle, ThrottleManager}; | 15 | pub use throttle::{DomainThrottle, ThrottleManager}; |
| 16 | |||
| 17 | #[cfg(test)] | ||
| 18 | pub use context::mock::MockSyncContext; | ||