BLCallFlowEvent
public enum BLCallFlowEvent : Sendable
BLCallFlowEvent provides events when important changes to a BLCall occur. Subscribe to chatEventStream to receive these events.
-
Notifies that a Call has connected.
See also
BLCall
Declaration
Swift
case callDidConnect(_: BLCall, participants: [BLParticipant])
Parameters
call
The BLCall that was connected.
-
Notifies that a Call has failed to connect.
Declaration
Swift
case callDidFailToConnect(_: Error?)
Parameters
error
An Error describing why failed to connect, or nil if it was expected.
-
Notifies that a Call has disconnected.
Declaration
Swift
case callDidDisconnect(_: Error?)
Parameters
error
An Error describing why disconnect occurred, or nil if the disconnect was expected.
-
Notifies that a Call Participant has connected.
See also
BLParticipant
Declaration
Swift
case participantConnected(_: BLParticipant, call: BLCall)
Parameters
participant
The BLParticipant that was connected.
-
Notifies that a Call Participant has updated.
See also
BLParticipant
Declaration
Swift
case participantUpdated(_: BLParticipant, call: BLCall)
Parameters
participant
The BLParticipant that was connected.
-
Notifies that a Call Participant has disconnected.
See also
BLParticipant
Declaration
Swift
case participantDisconnected(_: BLParticipant, call: BLCall)
Parameters
participant
The BLParticipant that was connected.