Conferences
public class Conferences
This class provides a method to create conferences and retrieve conference log.
-
Delegate to receive new conference invitations
Declaration
Swift
public weak var conferencesDelegate: ConferencesDelegate?
-
Creates a new conference
Declaration
Swift
public func createConference(recording: Bool, delegate: SippoConferenceDelegate, task: @escaping (SippoTask<SippoConference, SippoConferenceError>) -> ())
Parameters
recording
Allow record conference
delegate
Delegate to receive conference updates
result
Callback to receive the result as a SippoTask asynchronously.
-
Retrieve conferences entries related with user
Declaration
Swift
public func conferencesEntries(since: Date? = nil, limit: Int = 10, task: @escaping (SippoTask<[SippoConferenceEntry], SippoClientError>) -> ())
Parameters
since
Use to get conferences after this date
limit
To limit entries recovered (default value it’s 10)
task
Async result with
SippoConferenceEntry
list