Skip to main content
Version: 1.x.x

Meeting Class

using Meeting Class

The Meeting Class includes methods and events for managing meetings, participants, video & audio streams, data channels and UI customization.

Constructor

Meeting(String meetingId, Participant localParticipant)

  • return type : void

Properties

getmeetingId()

  • getmeetingId() will return meetingId, which represents the meetingId for the current meeting
  • return type : void

getLocalParticipant()

  • getLocalParticipant() will return Local participant
  • return type :Participant

getParticipants()

  • getParticipants() will return all Remote participant
  • return type : void

pubSub()

  • pubSub() will return object of PubSub class
  • return type : PubSub

Events

  • __events

      Events
    • addEventListener(MeetingEventListener listener)void

    • removeEventListener(MeetingEventListener listener)void

    • removeAllListeners()void

Methods

  • __methods

      Methods
    • join()void

      join the meeting
    • leave()void

      leave the meeting
    • end()void

      end the meeting
    • muteMic()void

      enable self mic
    • unmuteMic()void

      disable self mic
    • enableWebcam()void

      enable self webcam
    • disableWebcam()void

      disable self webcam
    • startRecording(String webhookUrl)void

      start meeting recording
    • stopRecording()void

      stop meeting recording
    • startLivestream(List<LivestreamOutput> outputs)void

      start meeting live streaming
    • stopLivestream()void

      stop meeting live streaming
    • getMics()Set<AppRTCAudioManager.AudioDevice>

      get all mic devices
    • changeMic()void

      change self mic
    • setAudioDeviceChangeListener(AppRTCAudioManager.AudioManagerEvents audioManagerEvents)void

      When a Local participant changes the Mic, `AppRTCAudioManager.AudioManagerEvents()` is triggered which can be set by using this method
    • changeWebcam()void

      change self webcam
    • enableScreenShare(Intent data)void

      start sharing phone screen
    • disableScreenShare()void

      stop sharing phone screen

Got a Question? Ask us on discord