Use branch feature/swift_wrapper_async_helpers of the linphone SDK

feature/core_thread_prototypes_suggestions_cd_3
QuentinArguillere 12 months ago
parent 933b6b46ea
commit b5a6ab70c9

@ -42,7 +42,7 @@ class CallKitExampleContext : ObservableObject
func addRegistrationStateCallBack(core:Core) {
core.accountStatePublisher
core.publisher?.onAccountRegistrationStateChanged?
.postOnMainQueue { (publishedValue:(core: Core, account: Account, state: RegistrationState, message: String)) in
NSLog("New registration state is \(publishedValue.state) for user id \( String(describing: publishedValue.account.params?.identityAddress?.asString()))\n")
if (publishedValue.state == .Ok) {
@ -61,7 +61,7 @@ class CallKitExampleContext : ObservableObject
func addCallStateChangedCallBack(core:Core) {
core.callStatePublisher
core.publisher?.onCallStateChanged?
.postOnMainQueue { (publishedValue:(core: Core, call: Call, state: Call.State, message: String)) in
self.callMsg = publishedValue.message
if (publishedValue.state == .PushIncomingReceived){

Loading…
Cancel
Save