cf-modkit-db 0.7.2

ModKit database library
Documentation
use std::time::Duration;

/// Adaptive pacing configuration for the worker loop.
/// Framework-level — no outbox-specific knowledge.
///
/// Controls how the worker paces itself between executions on `Proceed`.
/// Wake-up sources (notifiers, pokers) are the caller's responsibility
/// via `WorkerBuilder::notifier()`.
#[derive(Debug, Clone)]
pub struct PacingConfig {
    /// Fastest pace — floor for sustained work.
    pub min_interval: Duration,
    /// Starting pace after waking from Idle. Ramps down to `min_interval`.
    pub active_interval: Duration,
    /// Subtracted per consecutive Proceed (ramp-down step).
    pub ramp_step: Duration,
}

impl Default for PacingConfig {
    fn default() -> Self {
        Self {
            min_interval: Duration::from_millis(10),
            active_interval: Duration::from_millis(100),
            ramp_step: Duration::from_millis(10),
        }
    }
}