Searched refs:notify (Results 1 – 6 of 6) sorted by relevance
| /webrtc/util/src/buffer/ |
| H A D | mod.rs | 100 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 D | handshaker.rs | 239 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 D | save-to-disk-h264.rs | 27 notify: Arc<Notify>, in save_to_disk() 45 _ = notify.notified() => { in save_to_disk()
|
| /webrtc/examples/examples/save-to-disk-vpx/ |
| H A D | save-to-disk-vpx.rs | 28 notify: Arc<Notify>, in save_to_disk() 46 _ = notify.notified() => { in save_to_disk()
|
| /webrtc/turn/ |
| H A D | CHANGELOG.md | 6 * Added `alloc_close_notify` config parameter to `ServerConfig` and `Allocation`, to receive notify…
|
| /webrtc/dtls/src/conn/ |
| H A D | mod.rs | 471 self.notify(AlertLevel::Warning, AlertDescription::CloseNotify) in close() 495 pub(crate) async fn notify(&self, level: AlertLevel, desc: AlertDescription) -> Result<()> { in notify() method
|