Home
last modified time | relevance | path

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

/webrtc/webrtc/src/rtp_transceiver/rtp_receiver/
H A Dmod.rs150 state_tx: watch::Sender<State>, field
165 let mut state_watch_rx = self.state_tx.subscribe(); in read()
194 let mut state_watch_rx = self.state_tx.subscribe(); in read_simulcast()
255 let mut state_watch_rx = self.state_tx.subscribe(); in read_rtp()
359 State::transition(State::Started, &self.state_tx) in start()
366 State::Unstarted => State::transition(State::UnstartedPaused, &self.state_tx), in pause()
367 State::Started => State::transition(State::Paused, &self.state_tx), in pause()
377 State::Paused => State::transition(State::Started, &self.state_tx), in resume()
383 State::transition(State::Stopped, &self.state_tx) in close()
412 let (state_tx, state_rx) = watch::channel(State::Unstarted); in new()
[all …]