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

    registry

    the registry object.

    call

    the 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

    registry

    the registry object.

    call

    the call removed.