Class: WebRTC::RTCRtcpParameters
- Inherits:
-
Object
- Object
- WebRTC::RTCRtcpParameters
- Defined in:
- lib/webrtc/parity_types.rb
Instance Attribute Summary collapse
-
#cname ⇒ Object
Returns the value of attribute cname.
-
#reduced_size ⇒ Object
Returns the value of attribute reduced_size.
Instance Method Summary collapse
-
#initialize(cname: '', reduced_size: false) ⇒ RTCRtcpParameters
constructor
A new instance of RTCRtcpParameters.
Constructor Details
#initialize(cname: '', reduced_size: false) ⇒ RTCRtcpParameters
Returns a new instance of RTCRtcpParameters.
316 317 318 319 |
# File 'lib/webrtc/parity_types.rb', line 316 def initialize(cname: '', reduced_size: false) @cname = cname @reduced_size = reduced_size end |
Instance Attribute Details
#cname ⇒ Object
Returns the value of attribute cname.
314 315 316 |
# File 'lib/webrtc/parity_types.rb', line 314 def cname @cname end |
#reduced_size ⇒ Object
Returns the value of attribute reduced_size.
314 315 316 |
# File 'lib/webrtc/parity_types.rb', line 314 def reduced_size @reduced_size end |