sea-streamer-runtime 0.5.0

🌊 SeaStreamer async runtime abstraction
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(feature = "runtime-tokio")]
mod tokio_task;

#[cfg(feature = "runtime-tokio")]
pub use tokio_task::*;

#[cfg(feature = "runtime-async-std")]
mod async_std_task;

#[cfg(feature = "runtime-async-std")]
pub use async_std_task::*;

#[cfg(not(any(feature = "runtime-tokio", feature = "runtime-async-std")))]
mod no_rt_task;

#[cfg(not(any(feature = "runtime-tokio", feature = "runtime-async-std")))]
pub use no_rt_task::*;