public interface ConferenceParams
Conference
. Core.createConferenceParams()
. Modifier and Type | Method and Description |
---|---|
ConferenceParams |
clone()
Clone a
ConferenceParams . |
long |
getNativePointer()
Gets the native pointer used by this class to make native method calls.
|
java.lang.Object |
getUserData()
Gets the object stored in this object user's data
|
boolean |
isAudioEnabled()
Check whether audio capabilities are enabled.
|
boolean |
isChatEnabled()
Check whether chat capabilities are enabled.
|
boolean |
isLocalParticipantEnabled()
Returns whether local participant has to enter the conference.
|
boolean |
isOneParticipantConferenceEnabled()
Returns whether conference can have only one participant.
|
boolean |
isVideoEnabled()
Check whether video capabilities are enabled.
|
void |
setAudioEnabled(boolean enable)
Enable audio capabilities.
|
void |
setChatEnabled(boolean enable)
Enable chat capabilities.
|
void |
setLocalParticipantEnabled(boolean enable)
Enable local participant to enter the conference.
|
void |
setOneParticipantConferenceEnabled(boolean enable)
Enable conference with one participant.
|
void |
setUserData(java.lang.Object data)
Sets the object to store in this object user's data
|
void |
setVideoEnabled(boolean enable)
Enable video capabilities.
|
java.lang.String |
toString() |
boolean isAudioEnabled()
void setAudioEnabled(boolean enable)
enable
- If true, audio will be enabled during conference boolean isChatEnabled()
void setChatEnabled(boolean enable)
enable
- If true, chat is enabled during conference boolean isLocalParticipantEnabled()
void setLocalParticipantEnabled(boolean enable)
Core
. It uses theenable
- true if local participant is automatically added to theboolean isOneParticipantConferenceEnabled()
void setOneParticipantConferenceEnabled(boolean enable)
enable
- true if conference can have only one participant, false otherwise boolean isVideoEnabled()
void setVideoEnabled(boolean enable)
enable
- If true, video will be enabled during conference @NonNull ConferenceParams clone()
ConferenceParams
with the same parameters thanvoid setUserData(java.lang.Object data)
data
- the object to storejava.lang.Object getUserData()
long getNativePointer()
java.lang.String toString()
toString
in class java.lang.Object