Home
last modified time | relevance | path

Searched refs:notify (Results 1 – 6 of 6) sorted by relevance

/webrtc/util/src/buffer/
H A Dmod.rs100 notify: Arc<Notify>, field
118 notify: Arc::new(Notify::new()), in new()
179 self.notify.notify_one(); in write()
256 if timeout(d, self.notify.notified()).await.is_err() { in read()
260 self.notify.notified().await; in read()
277 self.notify.notify_waiters(); in close()
/webrtc/dtls/src/
H A Dhandshaker.rs239 let alert_err = self.notify(a.alert_level, a.alert_description).await; in prepare()
330 … let alert_err = self.notify(alert.alert_level, alert.alert_description).await; in wait()
382 … let alert_err = self.notify(alert.alert_level, alert.alert_description).await; in finish()
/webrtc/examples/examples/save-to-disk-h264/
H A Dsave-to-disk-h264.rs27 notify: Arc<Notify>, in save_to_disk()
45 _ = notify.notified() => { in save_to_disk()
/webrtc/examples/examples/save-to-disk-vpx/
H A Dsave-to-disk-vpx.rs28 notify: Arc<Notify>, in save_to_disk()
46 _ = notify.notified() => { in save_to_disk()
/webrtc/turn/
H A DCHANGELOG.md6 * Added `alloc_close_notify` config parameter to `ServerConfig` and `Allocation`, to receive notify
/webrtc/dtls/src/conn/
H A Dmod.rs471 self.notify(AlertLevel::Warning, AlertDescription::CloseNotify) in close()
495 pub(crate) async fn notify(&self, level: AlertLevel, desc: AlertDescription) -> Result<()> { in notify() method