Skip to main content

ProconfConferenceOptions

ProcofConferenceOptions provides provision to add conference and user information.


Bundle proConfBundle = new Bundle();
proConfBundle.putString("displayName", display_name);
proConfBundle.putString("email", email_id);
proConfBundle.putString("avatarURL", avatar_url);

ProConfConferenceOptions defaultOptions = new ProConfConferenceOptions.Builder()
.setRoom(roomName)
.setServerURL(new URL(server_url))
.setUserInfo(proConfBundle)
.build();

Methods

setRoomName(String)

Method used to add Room name for the Audio-Video call.

setVideoMuted(Boolean)

Used to start call with video muted.

default value:  false 

setAudioMuted(Boolean)

Used to start call with audio muted.

default value:  false 

setUserInfo(Bundle)

Used to set user information as Bundle.

setUserInfo(Bundle)

Used to set user information as Bundle.