(attrs map[string]string)
| 856 | } |
| 857 | |
| 858 | func (c *RTCClient) SetAttributes(attrs map[string]string) error { |
| 859 | return c.SendRequest(&livekit.SignalRequest{ |
| 860 | Message: &livekit.SignalRequest_UpdateMetadata{ |
| 861 | UpdateMetadata: &livekit.UpdateParticipantMetadata{ |
| 862 | Attributes: attrs, |
| 863 | }, |
| 864 | }, |
| 865 | }) |
| 866 | } |
| 867 | |
| 868 | func (c *RTCClient) hasPrimaryEverConnected() bool { |
| 869 | if c.subscriberAsPrimary.Load() { |
nothing calls this directly
no test coverage detected