rx-rust 0.3.0

Reactive Programming in Rust inspired by ReactiveX https://reactivex.io/
Documentation
use super::Scheduler;
use crate::disposable::Disposable;
use crate::utils::types::NecessarySendSync;
use educe::Educe;
use futures::stream::{AbortHandle, Abortable};
use std::time::Duration;

/// Schedules tasks using the async-std runtime utilities.
#[derive(Educe)]
#[educe(Debug, Clone)]
pub struct AsyncStdScheduler;

/// Provides the async-std-backed `Scheduler` implementation.
impl Scheduler for AsyncStdScheduler {
    fn schedule_future(
        &self,
        future: impl Future<Output = ()> + NecessarySendSync + 'static,
    ) -> impl Disposable + NecessarySendSync + 'static {
        let (abort_handle, abort_registration) = AbortHandle::new_pair();
        let future = Abortable::new(future, abort_registration);
        async_std::task::spawn(future);
        abort_handle
    }

    fn sleep(&self, duration: Duration) -> impl Future + NecessarySendSync + 'static {
        async_std::task::sleep(duration)
    }
}