Package com.twilio.voice
Class IceCandidateStats
java.lang.Object
com.twilio.voice.IceCandidateStats
Statistics of ICE candidate as defined in Identifiers for WebRTC's Statistics
API
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal StringCandidate type.final booleanThe candidate is no longer active.final StringIP address of the candidate.final booleanTrue indicates remote candidate and false indicates local candidate.final intPort number of the candidate.final intPriority as defined in RFC 5245.final StringTransport of the candidate, valid values are udp or tcp.final StringUnique identifier of the underlying candidate.final StringThe URL of the TURN or STUN server. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
transportId
Unique identifier of the underlying candidate. -
isRemote
public final boolean isRemoteTrue indicates remote candidate and false indicates local candidate. -
ip
IP address of the candidate. -
port
public final int portPort number of the candidate. -
protocol
Transport of the candidate, valid values are udp or tcp. -
candidateType
Candidate type. It can be host (host candidate), srflx (server reflexive candidate), prflx (peer reflexive candidate) and relay (relay candidate). -
priority
public final int priorityPriority as defined in RFC 5245. -
url
The URL of the TURN or STUN server. -
deleted
public final boolean deletedThe candidate is no longer active.
-
-
Constructor Details
-
IceCandidateStats
-