//! [`ruchei::switching`] use async_net::TcpListener; use futures_util::StreamExt; use ruchei::{ concurrent::ConcurrentExt, echo::buffered::EchoBuffered, poll_on_wake::PollOnWakeExt, switching::SwitchingExt, }; #[async_std::main] async fn main() { TcpListener::bind("127.0.0.1:8080") .await .unwrap() .incoming() .poll_on_wake() .filter_map(|r| async { r.ok() }) .map(async_tungstenite::accept_async) .fuse() .concurrent() .filter_map(|r| async { r.ok() }) .map(|s| s.poll_on_wake()) .switching() .echo_buffered() .await .unwrap(); }