Home
last modified time | relevance | path

Searched refs:interceptors (Results 1 – 3 of 3) sorted by relevance

/webrtc/interceptor/src/
H A Dchain.rs10 interceptors: Vec<Arc<dyn Interceptor + Send + Sync>>, field
15 pub fn new(interceptors: Vec<Arc<dyn Interceptor + Send + Sync>>) -> Self { in new()
16 Chain { interceptors } in new()
20 self.interceptors.push(icpr); in add()
32 for icpr in &self.interceptors { in bind_rtcp_reader()
44 for icpr in &self.interceptors { in bind_rtcp_writer()
57 for icpr in &self.interceptors { in bind_local_stream()
65 for icpr in &self.interceptors { in unbind_local_stream()
77 for icpr in &self.interceptors { in bind_remote_stream()
85 for icpr in &self.interceptors { in unbind_remote_stream()
[all …]
H A Dregistry.rs40 let interceptors: Result<Vec<_>> = self.builders.iter().map(|b| b.build(id)).collect(); in build_chain() localVariable
42 Ok(Chain::new(interceptors?)) in build_chain()
/webrtc/interceptor/
H A DCHANGELOG.md11 * Further extended stats interceptors to collect stats for `RemoteOutoundRTPStats` and improve `Rem…