1 2 3 4 5 6 7 8 9 10
// SPDX-License-Identifier: MIT OR Apache-2.0 // SPDX-FileCopyrightText: 2025-2026 ObzenFlow Contributors // https://obzenflow.dev use super::IDLE_BACKOFF_MS; #[inline] pub(super) async fn idle_backoff() { tokio::time::sleep(std::time::Duration::from_millis(IDLE_BACKOFF_MS)).await; }