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
Modifier and TypeFieldDescriptionfinal String
Candidate type.final boolean
The candidate is no longer active.final String
IP address of the candidate.final boolean
True indicates remote candidate and false indicates local candidate.final int
Port number of the candidate.final int
Priority as defined in RFC 5245.final String
Transport of the candidate, valid values are udp or tcp.final String
Unique identifier of the underlying candidate.final String
The URL of the TURN or STUN server. -
Constructor Summary
-
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
-