RoomDelegate

@objc(SBCRoomDelegate)
public protocol RoomDelegate : AnyObject

RoomDelegate methods are invoked along the flow of the room. You should implement the delegate methods to adjust your app according to the changes to the states of the room.

override func viewDidLoad() {
   // ...
   room.addDelegate(self, identifier: "identifier")
}

// ...

Since

1.6.0