BLChatDelegate
public protocol BLChatDelegate : NSObject
BLChatDelegate provides chat related callbacks.
-
Notifies the delegate that the user is connected to a chat room.
Declaration
Swift
func chatConnected()
-
Notifies the delegate that the user is disconnected from a chat room.
Declaration
Swift
func chatDisconnected()
-
Notifies the delegate that a new chat message recieved.
Declaration
Swift
func chatMessageRecieved(message: ChatMessage)