Home
last modified time | relevance | path

Searched refs:Notify (Results 1 – 11 of 11) sorted by relevance

/webrtc/util/src/buffer/
H A Dmod.rs7 use tokio::sync::{Mutex, Notify};
100 notify: Arc<Notify>,
118 notify: Arc::new(Notify::new()), in new()
/webrtc/examples/examples/save-to-disk-h264/
H A Dsave-to-disk-h264.rs6 use tokio::sync::{Mutex, Notify};
27 notify: Arc<Notify>, in save_to_disk() argument
200 let notify_tx = Arc::new(Notify::new()); in main()
/webrtc/examples/examples/save-to-disk-vpx/
H A Dsave-to-disk-vpx.rs6 use tokio::sync::{Mutex, Notify};
28 notify: Arc<Notify>, in save_to_disk() argument
225 let notify_tx = Arc::new(Notify::new()); in main()
/webrtc/webrtc/src/sctp_transport/
H A Dmod.rs33 use tokio::sync::{Mutex, Notify};
51 notify_rx: Arc<Notify>,
94 notify_tx: Arc<Notify>,
120 notify_tx: Arc::new(Notify::new()), in new()
/webrtc/webrtc/src/data_channel/
H A Dmod.rs26 use tokio::sync::{Mutex, Notify};
86 pub(crate) notify_tx: Arc<Notify>,
115 notify_tx: Arc::new(Notify::new()), in new()
300 notify_rx: Arc<Notify>, in read_loop() argument
/webrtc/webrtc/src/rtp_transceiver/rtp_sender/
H A Dmod.rs23 use tokio::sync::{mpsc, Mutex, Notify};
30 pub(crate) stop_called_rx: Arc<Notify>,
115 stop_called_tx: Arc<Notify>,
145 let stop_called_tx = Arc::new(Notify::new()); in new()
/webrtc/examples/examples/insertable-streams/
H A Dinsertable-streams.rs8 use tokio::sync::Notify;
147 let notify_tx = Arc::new(Notify::new()); in main()
/webrtc/examples/examples/ortc/
H A Dortc.rs6 use tokio::sync::Notify;
98 let done = Arc::new(Notify::new()); in main()
/webrtc/examples/examples/play-from-disk-h264/
H A Dplay-from-disk-h264.rs8 use tokio::sync::Notify;
137 let notify_tx = Arc::new(Notify::new()); in main()
/webrtc/examples/examples/play-from-disk-vpx/
H A Dplay-from-disk-vpx.rs8 use tokio::sync::Notify;
143 let notify_tx = Arc::new(Notify::new()); in main()
/webrtc/sctp/src/stream/
H A Dmod.rs24 sync::{mpsc, Mutex, Notify},
78 pub(crate) read_notifier: Notify,
134 read_notifier: Notify::new(), in new()