-
Notifications
You must be signed in to change notification settings - Fork 1
DataChannelEvent
Adnan Mujagić edited this page Oct 25, 2023
·
4 revisions
Event triggered when a text has been (un)successfully delivered.
event = { id: string, date: Date, delivered: boolean }
Event triggered when a text has been received.
event = { text: string, from: Endpoint, isDirect: boolean, date: Date }
Event triggered when a broadcast has been received. A broadcast is a message that is
sent to all conference or dialog participants with an open DataChannel
by invoking
Calls API methods for conferences
and dialogs respectively.
event = { text: string, date: Date }