-
Notifications
You must be signed in to change notification settings - Fork 2
PhoneEndpoint
Kenan Genjac edited this page Feb 18, 2025
·
2 revisions
extends Endpoint
Returns the value of identifier on this endpoint represented by the participant's phone number.
none
-
String- Identifier of the participant on this endpoint.
@Override
public void onParticipantJoined(ParticipantJoinedEvent participantJoinedEvent) {
Participant participant = participantJoinedEvent.getParticipant();
Endpoint endpoint = participant.getEndpoint();
Log.d("WebRTC", "Identifier of the participant on this endpoint: " + endpoint.identifier());
}Returns the value of display identifier on this endpoint represented by the participant's phone number.
none
-
String- Display identifier of the participant on this endpoint.
@Override
public void onParticipantJoined(ParticipantJoinedEvent participantJoinedEvent) {
Participant participant = participantJoinedEvent.getParticipant();
Endpoint endpoint = participant.getEndpoint();
Log.d("WebRTC", "Display identifier of the participant on this endpoint: " + endpoint.displayIdentifier());
}