hashiverse_lib/client/timeline/mod.rs
1//! # Time-ordered walks over the bucket hierarchy
2//!
3//! A single-source timeline walks one feed (a user's posts, a hashtag, mentions,
4//! replies) backwards through time; a multiple-source timeline merges several of
5//! those into one chronologically sorted stream. A pure recursive visitor powers
6//! the walk, and a short-lived scratch pad stashes just-authored local posts so
7//! they appear in the user's own timeline before network propagation completes.
8
9pub mod single_timeline;
10pub mod multiple_timeline;
11pub mod recent_posts_pen;
12
13pub mod recursive_bucket_visitor;
14