SippoClient
public class SippoClient
Entry point to create calls, listen to incoming calls and manage register/login. A reachable WAC and gateway is needed.
-
Struct to define log levels
Declaration
Swift
public struct Logging
-
SippoClient Options
Declaration
Swift
public struct Options
-
SippoClient instance
Declaration
Swift
public private(set) static var client: SippoClient! { get }
-
Service for login and logout logic
Declaration
Swift
public lazy var sessions: Sessions { get set }
-
Service to create conferences
Declaration
Swift
public func conferences() -> Result<QNConferencesRepository, ClientError>
-
Service to manage Contact logic like create or update contact and to subscribe for contact events
Declaration
Swift
public func addressBooks() -> Result<QNAddressBooksRepository, ClientError>
-
Service to fetch user groups and receive group events like new group
Declaration
Swift
public func groups() -> Result<QNGroupsRepository, ClientError>
-
Service to manage Presence logic like subscribe or update presence and to subscribe for presence events
Declaration
Swift
public func presences() -> Result<QNPresencesRepository, ClientError>
-
Service for CRUD operation over Meetings
Declaration
Swift
public func meetings() -> Result<QNMeetingsRepository, ClientError>
-
Fires actions for WebRTC configuration, should be called only once in app life cycle
Declaration
Swift
public static func configureRTC()
-
Configure a new Session, if other Session exists, it’s still alive (logout is needed explicity)
Declaration
Swift
public class func configure( with options: Options, onSuccess: @escaping (() -> Void), onFailure: @escaping ((Error) -> Void) )
Parameters
options
Options to initialize SDK