1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! Real-time price streaming from Yahoo Finance WebSocket
//!
//! This module provides a Stream-based API for receiving real-time price updates,
//! similar to Kotlin Flow or Rx observables.
//!
//! # Overview
//!
//! Yahoo Finance provides a WebSocket endpoint that streams real-time price data
//! in protobuf format. This module handles:
//!
//! - WebSocket connection and reconnection
//! - Protobuf message decoding
//! - Subscription management with automatic heartbeats
//! - A clean Stream API for consuming updates
//!
//! # Example
//!
//! ```no_run
//! use finance_query::streaming::PriceStream;
//! use futures::StreamExt;
//!
//! # async fn example() -> Result<(), Box<dyn std::error::Error>> {
//! // Subscribe to symbols
//! let mut stream = PriceStream::subscribe(&["AAPL", "NVDA", "TSLA"]).await?;
//!
//! // Process updates as they arrive
//! while let Some(price) = stream.next().await {
//! println!("{}: ${:.2} ({:+.2}%)",
//! price.id,
//! price.price,
//! price.change_percent
//! );
//! }
//! # Ok(())
//! # }
//! ```
pub use ;
pub use ;