pub struct AdaptiveRefreshConfig {
pub base_interval_ms: u64,
pub min_interval_ms: u64,
pub max_interval_ms: u64,
pub high_churn_threshold: f64,
pub window_ms: u64,
pub max_events: usize,
}Expand description
Configuration for adaptive refresh scheduling.
Fields§
§base_interval_ms: u64Base refresh interval when stable. Default: 10 minutes.
min_interval_ms: u64Minimum refresh interval under extreme churn. Default: 1 minute.
max_interval_ms: u64Maximum refresh interval when very stable. Default: 30 minutes.
high_churn_threshold: f64Churn-rate threshold above which we start shrinking the interval. Default: 2.0 events per second.
window_ms: u64Rolling window size for churn measurement in milliseconds. Default: 60 seconds.
max_events: usizeMaximum events to retain in rolling window (memory guard).
Trait Implementations§
Source§impl Clone for AdaptiveRefreshConfig
impl Clone for AdaptiveRefreshConfig
Source§fn clone(&self) -> AdaptiveRefreshConfig
fn clone(&self) -> AdaptiveRefreshConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AdaptiveRefreshConfig
impl Debug for AdaptiveRefreshConfig
Auto Trait Implementations§
impl Freeze for AdaptiveRefreshConfig
impl RefUnwindSafe for AdaptiveRefreshConfig
impl Send for AdaptiveRefreshConfig
impl Sync for AdaptiveRefreshConfig
impl Unpin for AdaptiveRefreshConfig
impl UnsafeUnpin for AdaptiveRefreshConfig
impl UnwindSafe for AdaptiveRefreshConfig
Blanket Implementations§
impl<T> Allocation for T
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more