public class IceCandidate extends Object
RTCIceCandidate
interface.https://www.w3.org/TR/2018/CR-webrtc-20180927/#rtcicecandidate-interface
Modifier | Constructor and Description |
---|---|
protected |
IceCandidate()
Default private constructor of IceCandidate for serialization with Jackson
|
|
IceCandidate(String candidate,
String sdpMid,
int sdpMLineIndex)
Create a IceCandidate
|
Modifier and Type | Method and Description |
---|---|
String |
getCandidate()
get The candidate-attribute as defined in section 15.1 of ICE (rfc5245).
|
String |
getSdpMid()
get If present, this contains the identifier of the 'media stream identification'.
|
int |
getSdpMLineIndex()
get The index (starting at zero) of the m-line in the SDP this candidate is associated with.
|
void |
setCandidate(String candidate)
set The candidate-attribute as defined in section 15.1 of ICE (rfc5245).
|
void |
setSdpMid(String sdpMid)
set If present, this contains the identifier of the 'media stream identification'.
|
void |
setSdpMLineIndex(int sdpMLineIndex)
set The index (starting at zero) of the m-line in the SDP this candidate is associated with.
|
protected IceCandidate()
public String getCandidate()
public void setCandidate(String candidate)
public String getSdpMid()
public void setSdpMid(String sdpMid)
public int getSdpMLineIndex()
public void setSdpMLineIndex(int sdpMLineIndex)
Copyright © 2022 Kurento. All rights reserved.