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 1ac0cb1..d26c1f0 100644 --- a/src/purgatory/sync/mod.rs +++ b/src/purgatory/sync/mod.rs | |||
| @@ -7,10 +7,15 @@ | |||
| 7 | //! - Debouncing for burst event arrivals | 7 | //! - Debouncing for burst event arrivals |
| 8 | 8 | ||
| 9 | mod context; | 9 | mod context; |
| 10 | mod functions; | ||
| 10 | mod queue; | 11 | mod queue; |
| 11 | mod throttle; | 12 | mod throttle; |
| 12 | 13 | ||
| 13 | pub use context::{ProcessResult, SyncContext}; | 14 | pub use context::{ProcessResult, SyncContext}; |
| 15 | pub use functions::{ | ||
| 16 | get_throttled_domains_with_untried_urls, sync_identifier_from_url, sync_identifier_next_url, | ||
| 17 | ThrottledDomainInfo, | ||
| 18 | }; | ||
| 14 | pub use queue::SyncQueueEntry; | 19 | pub use queue::SyncQueueEntry; |
| 15 | pub use throttle::{DomainThrottle, ThrottleManager}; | 20 | pub use throttle::{DomainThrottle, ThrottleManager}; |
| 16 | 21 | ||