routers_realtime 0.5.0

A Demonstration for Real-Time Map Matching
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! The partition orchestrator: vehicle continuity, admission, commit, recovery.
//!
//! One [`worker`] task owns each partition outright — its vehicle table,
//! scheduler and frontier tracker — with no cross-partition sharing, driving
//! each vehicle read → schedule → admit → dispatch → validate → commit →
//! advance frontier. Raw age is an observed freshness SLA, not a terminal
//! correctness condition. Draining is handled by [`lifecycle`](crate::lifecycle).

pub mod admission;
pub mod commit;
pub mod dispatch;
pub mod frontier;
pub mod reader;
pub mod recovery;
pub mod scheduler;
pub mod sharded;
pub mod validate;
pub mod worker;