BCXCallRegistryObserver
Objective-C
@protocol BCXCallRegistryObserver <NSObject>
Swift
protocol BCXCallRegistryObserver : NSObjectProtocol
An observer of a call registry object.
-
Invoked when a call is added to the registry.
Declaration
Objective-C
- (void)registry:(nonnull id<BCXCallRegistry>)registry didAddCall:(nonnull id<BCXCall>)call;Parameters
registrythe registry object.
callthe call added.
-
Invoked when a call is removed from the registry.
Declaration
Objective-C
- (void)registry:(nonnull id<BCXCallRegistry>)registry didRemoveCall:(nonnull id<BCXCall>)call;Parameters
registrythe registry object.
callthe call removed.
View on GitHub
BCXCallRegistryObserver Protocol Reference