Package | Description |
---|---|
app.library.linkflow.apprtc | |
org.webrtc |
Modifier and Type | Field and Description |
---|---|
java.util.List<IceCandidate> |
AppRTCClient.SignalingParameters.iceCandidates |
Modifier and Type | Method and Description |
---|---|
void |
PeerConnectionClient.addRemoteIceCandidate(IceCandidate candidate) |
void |
PeerConnectionClient.PeerConnectionEvents.onIceCandidate(IceCandidate candidate)
Callback fired once local Ice candidate is generated.
|
void |
PeerConnectionClient.PeerConnectionEvents.onIceCandidatesRemoved(IceCandidate[] candidates)
Callback fired once local ICE candidates are removed.
|
void |
AppRTCClient.SignalingEvents.onRemoteIceCandidate(IceCandidate candidate)
Callback fired once remote Ice candidate is received.
|
void |
AppRTCClient.SignalingEvents.onRemoteIceCandidatesRemoved(IceCandidate[] candidates)
Callback fired once remote Ice candidate removals are received.
|
void |
PeerConnectionClient.removeRemoteIceCandidates(IceCandidate[] candidates) |
void |
DirectRTCClient.sendLocalIceCandidate(IceCandidate candidate) |
void |
WebSocketRTCClient.sendLocalIceCandidate(IceCandidate candidate) |
void |
AppRTCClient.sendLocalIceCandidate(IceCandidate candidate)
Send Ice candidate to the other participant.
|
void |
DirectRTCClient.sendLocalIceCandidateRemovals(IceCandidate[] candidates)
Send removed Ice candidates to the other participant.
|
void |
WebSocketRTCClient.sendLocalIceCandidateRemovals(IceCandidate[] candidates) |
void |
AppRTCClient.sendLocalIceCandidateRemovals(IceCandidate[] candidates)
Send removed ICE candidates to the other participant.
|
Constructor and Description |
---|
SignalingParameters(java.util.List<PeerConnection.IceServer> iceServers,
boolean initiator,
java.lang.String clientId,
java.lang.String wssUrl,
java.lang.String wssPostUrl,
SessionDescription offerSdp,
java.util.List<IceCandidate> iceCandidates) |
Modifier and Type | Method and Description |
---|---|
boolean |
PeerConnection.addIceCandidate(IceCandidate candidate) |
void |
PeerConnection.Observer.onIceCandidate(IceCandidate candidate)
Triggered when a new ICE candidate has been found.
|
void |
PeerConnection.Observer.onIceCandidatesRemoved(IceCandidate[] candidates)
Triggered when some ICE candidates have been removed.
|
boolean |
PeerConnection.removeIceCandidates(IceCandidate[] candidates) |