()
| 15 | use tokio::sync::broadcast; |
| 16 | |
| 17 | fn now_epoch_ms() -> u64 { |
| 18 | std::time::SystemTime::now() |
| 19 | .duration_since(std::time::UNIX_EPOCH) |
| 20 | .map(|d| d.as_millis() as u64) |
| 21 | .unwrap_or(0) |
| 22 | } |
| 23 | |
| 24 | /// A pipeline stage: given the previous stage's outcome (`None` before the |
| 25 | /// first stage) and the original item, produce the next step to run — or |
no test coverage detected