-
Notifications
You must be signed in to change notification settings - Fork 3
WebrtcEndpoint
Kenan Genjac edited this page Feb 18, 2025
·
2 revisions
extends
Endpoint
Creates a new instance of WebrtcEndpoint
.
-
WebrtcEndpoint
- A new instance ofWebrtcEndpoint
let webrtcEndpoint = WebrtcEndpoint("identity", "displayName");
os_log("WebrtcEndpoint identifier: %@ and displayIdentifier: %@", webrtcEndpoint.identifier(), webrtcEndpoint.displayIdentifier());
Returns the value of the identifier on this endpoint represented by the participant's identity.
none
-
String
- Identifier of the participant on this endpoint
os_log("Identifier of the participant on this endpoint: %@", endpoint.identifier());
Returns the value of the display identifier on this endpoint represented by the participant's display name.
none
-
String?
- Display identifier of the participant on this endpoint
os_log("Display identifier of the participant on this endpoint: %@", endpoint.displayIdentifier());