BDPTempoTrackingDelegate

@protocol BDPTempoTrackingDelegate <NSObject>

Defines the call-backs which Point SDK makes to inform the Application of Tempo events.

Assign your own implementation of this protocol to the BDLocationManager.tempoTrackingDelegate property of the shared BDLocationManager instance, to handle Tempo related callbacks.

  • This method indicates that Tempo Tracking has expired

    Declaration

    Objective-C

    - (void)tempoTrackingDidExpire;
  • Deprecated

    First deprecated in 15.4.0 - This is now deprecated in favor of completion callback. Please refer to BDLocationManager.

    This method indicates that Tempo Tracking has started

    Declaration

    Objective-C

    - (void)didStartTracking;
  • Deprecated

    First deprecated in 15.4.0 - This is now deprecated in favor of completion callback. Please refer to BDLocationManager.. However, if tempo tracking expires, tempoTrackingdidExpire will be called instead

    This method indicates that Tempo Tracking has stopped

    Declaration

    Objective-C

    - (void)didStopTracking;
  • This method is called if Tempo Tracking is stopped due to an error (for e.g. invalid destination Id)

    Declaration

    Objective-C

    - (void)didStopTrackingWithError:(NSError *)error;

    Parameters

    error

    Details from NSError objects delivered here are intended for development logging purposes and are not intended to be seen by your application’s users.