1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! Shared decay-window type for engines that age observations by tick count.
//!
//! `DecayWindow` configures how many ticks an observation or route entry
//! remains fresh and how soon the next engine refresh should run. Proactive
//! next-hop engines (BATMAN variants, Babel, OLSRv2) use this primitive to
//! prune stale per-neighbor evidence and keep refresh cadence legible.
// proc-macro-scope: host support primitive intentionally stays outside #[public_model].
use ;
/// Per-engine staleness and refresh window configuration.
///
/// `stale_after_ticks` is the number of ticks an observation may age before it
/// is dropped. `next_refresh_within_ticks` is the upper bound on how soon the
/// next engine tick should refresh derived tables.