synchrony 0.1.7

A library that provides both sync and unsync versions of common synchronization primitives.
Documentation
1
2
3
4
5
6
7
8
9
/// Notify async tasks or threads.
pub mod sync {
    pub use event_listener::{Event, EventListener};

    impl crate::AssertMt for Event {}
    impl crate::AssertMt for EventListener {}
}
#[doc(inline)]
pub use local_event as unsync;