Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@
//! - **[`IndexedDelta`]** — An indexed [`DeltaPart`] carrying the part position.
//! - **[`MessageStart`]** / **[`MessageDelta`]** — Boundary events with metadata.
//!
//! # Sub-modules
//!
//! - **[`handler`]** — [`handler::StreamHandler`] with retry, timeout,
//! and fallback for resilient streaming.
//!
//! # Quick Start
//!
//! ```rust
Expand All @@ -53,6 +58,8 @@ use serde::{Deserialize, Serialize};
use serde_json::Value;
use std::fmt;

pub mod handler;

// ==================================================
// StreamError
// ==================================================
Expand Down
Loading
Loading