createBubble

abstract fun createBubble(name: String?, description: String?, disableNotifications: Boolean, participantsMuted: Boolean, entryToneActivated: Boolean, listener: IRoomProxy.IRoomCreationListener?)

Create a bubble with a name, a description and if the notifications are enabled or not.

The conversation history is always enabled for rooms created by this method.

Parameters

name

String The name of the bubble

description

String The description / topic of the bubble

disableNotifications

boolean Disable or not the notifications for the created bubble

participantsMuted

boolean Automatically mute participants when they join the meeting

entryToneActivated

boolean Play an entry tone when participants join the conference

listener

IRoomCreationListener Callback (onCreationSuccess and onCreationFailed)

abstract fun createBubble(name: String?, description: String?, withHistory: Boolean, disableNotifications: Boolean, participantsMuted: Boolean, entryToneActivated: Boolean, listener: IRoomProxy.IRoomCreationListener?)

Create a bubble with a name, a description, with or not history and if the notifications are enabled or not.

Parameters

name

String The name of the bubble

description

String The description / topic of the bubble

withHistory

boolean If set to false, new comers won't have the conversation history

disableNotifications

boolean Disable or not the notifications for the created bubble

participantsMuted

boolean Automatically mute participants when they join the meeting

entryToneActivated

boolean Play an entry tone when participants join the conference

listener

IRoomCreationListener Callback (onCreationSuccess and onCreationFailed)