-
Notifications
You must be signed in to change notification settings - Fork 2
Endpoint
Ajša Terko edited this page Apr 26, 2023
·
2 revisions
Returns the value of the participant's identifier on this endpoint as a String
.
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 the participant's display identifier on this endpoint as a String
.
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());
}