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
//! The materialiser: turn committed output into the served view.
//!
//! The materialiser reads the committed-output plane and *is* the served
//! history, applying every output to a sink and persisting each before it
//! acknowledges. The output plane alone defines the record.

pub mod consumer;
pub mod memory;
pub mod sink;
pub mod valkey;

pub use consumer::{Stats, run};
pub use memory::MemorySink;
pub use sink::{
    Applied, SegmentState, Sink, StoredLayer, VehicleMaterialized, merge, target_segment,
};
pub use valkey::{ValkeyError, ValkeySink};