fugle-marketdata-core 0.5.1

Internal kernel for the Fugle market data SDK. End users should depend on `fugle-marketdata` instead.
Documentation
1
2
3
4
5
6
7
8
9
//! Synchronous (blocking) WebSocket client.
//!
//! Always compiled. Default `WebSocketClient` in 0.3.0. No tokio dependency.
//! Uses `tungstenite` 0.29 (blocking) + a single owner thread per client.

pub mod client;
pub(crate) mod owner_thread;

pub use client::{WebSocketClient, DEFAULT_SHUTDOWN_TIMEOUT};