public interface RoomHandler
| Modifier and Type | Method and Description |
|---|---|
void |
onIceCandidate(String roomName,
String participantId,
String endpoint,
org.kurento.client.IceCandidate candidate)
Called when a new
IceCandidate is gathered for the local WebRTC endpoint. |
void |
onMediaElementError(String roomName,
String participantId,
String errorDescription)
Called as a result of an error intercepted on a media element of a participant.
|
void |
onPipelineError(String roomName,
Set<String> participantIds,
String errorDescription)
Called as a result of an error intercepted on the media pipeline.
|
void onIceCandidate(String roomName, String participantId, String endpoint, org.kurento.client.IceCandidate candidate)
IceCandidate is gathered for the local WebRTC endpoint. The user
should receive a notification with all the provided information so that the candidate is added
to the remote WebRTC peer.roomName - name of the roomparticipantId - identifier of the participantendpoint - String the identifier of the local WebRTC endpoint (created in the server)candidate - the gathered IceCandidatevoid onMediaElementError(String roomName, String participantId, String errorDescription)
roomName - name of the roomparticipantId - identifier of the participantdescription - description of the errorvoid onPipelineError(String roomName, Set<String> participantIds, String errorDescription)
roomName - the room where the error occurredparticipantIds - the participants identifiersdescription - description of the errorCopyright © 2016 Kurento. All rights reserved.