Class IceCandidatePair
java.lang.Object
org.kurento.client.IceCandidatePair
The ICE candidate pair used by the ICE library, for a certain stream.
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedDefault private constructor of IceCandidatePair for serialization with JacksonIceCandidatePair(String streamId, int componentId, String localCandidate, String remoteCandidate) Create a IceCandidatePair -
Method Summary
Modifier and TypeMethodDescriptionintget Component ID of the ICE connectionget The local candidate used by the ICE library.get The remote candidate used by the ICE library.get Stream ID of the ICE connectionvoidsetComponentId(int componentId) set Component ID of the ICE connectionvoidsetLocalCandidate(String localCandidate) set The local candidate used by the ICE library.voidsetRemoteCandidate(String remoteCandidate) set The remote candidate used by the ICE library.voidsetStreamId(String streamId) set Stream ID of the ICE connection
-
Constructor Details
-
IceCandidatePair
protected IceCandidatePair()Default private constructor of IceCandidatePair for serialization with Jackson -
IceCandidatePair
-
-
Method Details
-
getStreamId
get Stream ID of the ICE connection -
setStreamId
set Stream ID of the ICE connection -
getComponentId
public int getComponentId()get Component ID of the ICE connection -
setComponentId
public void setComponentId(int componentId) set Component ID of the ICE connection -
getLocalCandidate
get The local candidate used by the ICE library. -
setLocalCandidate
set The local candidate used by the ICE library. -
getRemoteCandidate
get The remote candidate used by the ICE library. -
setRemoteCandidate
set The remote candidate used by the ICE library.
-