Skip to main content

sonos_stream/polling/
mod.rs

1//! Polling system for transparent event fallback
2//!
3//! This module implements an intelligent polling system that can replace UPnP events
4//! when firewall blocking is detected or events fail to arrive. It uses service-specific
5//! strategies to poll device state and generate synthetic events.
6
7pub mod scheduler;
8pub mod strategies;
9
10pub use scheduler::{PollingScheduler, PollingTask};
11pub use strategies::{AVTransportPoller, DeviceStatePoller, RenderingControlPoller, ServicePoller};