a2a_protocol_client/streaming/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2// Copyright 2026 Tom F.
3
4//! SSE client-side streaming support.
5//!
6//! [`SseParser`] transforms raw bytes into [`SseFrame`]s.
7//! [`EventStream`] wraps the parser and deserializes each frame as a
8//! [`a2a_protocol_types::StreamResponse`].
9
10pub mod event_stream;
11pub mod sse_parser;
12
13pub use event_stream::EventStream;
14pub use sse_parser::{SseFrame, SseParseError, SseParser};