Link: mediasoup :: Communication Between Client and Server
Quote:
The same happens when pausing a RTP producer or consumer in client or server side. The action must be signaled to the other side. In addition, the server side application should listen for the following events and notify the client about them:
- Consumer “producerpause”. The client should call
pause()
on the corresponding local transport.- Consumer “producerresume”. The client should call
resume()
on the corresponding local transport (unless the consumer itself was also paused on purpose).
Do we really need to pause / resume local transport
, but not local consumer
on a client side?