BDKCallRegistryObserver

Objective-C

@protocol BDKCallRegistryObserver <NSObject>

Swift

protocol CallRegistryObserver : NSObjectProtocol

An observer of a call registry object.

  • Invoked when a call is added to the registry.

    Declaration

    Objective-C

    - (void)registry:(nonnull id<BDKCallRegistry>)registry
          didAddCall:(nonnull id<BDKCall>)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<BDKCallRegistry>)registry
        didRemoveCall:(nonnull id<BDKCall>)call;

    Parameters

    registry

    the registry object.

    call

    the call removed.