ActiveSpeakerObserver
@objc
public protocol ActiveSpeakerObserverActiveSpeakerObserver handles event related to finding active speaker and corresponding scores
- 
                  
                  Uniquely identifies this observer DeclarationSwift @objc var observerId: String { get }
- 
                  
                  Frequency of activeSpeakerScoreDidChange DeclarationSwift @objc optional var scoresCallbackIntervalMs: Int { get }
- 
                  
                  Observes the active speaker scores at frequency scoresCallbackIntervalMs Note: this callback will be called on main thread. Note: this callback will NOT be called unless scoresCallbackIntervalMs was set DeclarationSwift @objc optional func activeSpeakerScoreDidChange(scores: [AttendeeInfo : Double])ParametersscoresActive speaker scores for each attendee 
- 
                  
                  Observes changes in list of active speakers Note: this callback will be called on main thread. DeclarationSwift func activeSpeakerDidDetect(attendeeInfo: [AttendeeInfo])ParametersattendeeInfoList of active speakers in decreasing order of score 
