diff options
Diffstat (limited to 'src/purgatory/sync/mod.rs')
| -rw-r--r-- | src/purgatory/sync/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/purgatory/sync/mod.rs b/src/purgatory/sync/mod.rs index 8ac9216..be89130 100644 --- a/src/purgatory/sync/mod.rs +++ b/src/purgatory/sync/mod.rs | |||
| @@ -5,9 +5,11 @@ | |||
| 5 | //! - Domain-based throttling (configurable requests/minute per domain) | 5 | //! - Domain-based throttling (configurable requests/minute per domain) |
| 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 | //! - Background sync loop processing ready identifiers every 1 second | ||
| 8 | 9 | ||
| 9 | mod context; | 10 | mod context; |
| 10 | mod functions; | 11 | mod functions; |
| 12 | mod r#loop; | ||
| 11 | mod queue; | 13 | mod queue; |
| 12 | mod throttle; | 14 | mod throttle; |
| 13 | 15 | ||