public interface Conference
Conference
class The _LinphoneConference struct does not exists, it's
the Conference C++ class that is used behindModifier and Type | Method and Description |
---|---|
int |
addParticipant(Call call)
Join an existing call to the conference.
|
java.lang.String |
getId()
Get the conference id as string.
|
Address[] |
getParticipants()
Get URIs of all participants of one conference The returned bctbx_list_t
contains URIs of all participant.
|
java.lang.Object |
getUserData()
Gets the object stored in this object user's data
|
int |
inviteParticipants(Address[] addresses,
CallParams params)
Invite participants to the conference, by supplying a list of
Address . |
int |
removeParticipant(Address uri)
Remove a participant from a conference.
|
void |
setId(java.lang.String conferenceID)
Set the conference id as string.
|
void |
setUserData(java.lang.Object data)
Sets the object to store in this object user's data
|
java.lang.String getId()
void setId(java.lang.String conferenceID)
Address[] getParticipants()
Address
objects. LinphoneAddressint addParticipant(Call call)
call
- a Call
that has to be added to the conference.int inviteParticipants(Address[] addresses, CallParams params)
Address
.params
- CallParams
to use for inviting the participants.int removeParticipant(Address uri)
uri
- SIP URI of the participant to remove
Warning: The passed SIP URI must be one of the URIs returned by getParticipants()
void setUserData(java.lang.Object data)
data
- the object to storejava.lang.Object getUserData()