TrackerDelegate

@objc public protocol TrackerDelegate

Sends different events during hit building

  • Notify when tracker needs first launch approval

    Declaration

    Swift

    @objc optional func trackerNeedsFirstLaunchApproval(_ message: String)
  • Notify when hit has been built

    Declaration

    Swift

    @objc optional func buildDidEnd(_ status: HitStatus, message: String)
  • Notify when hit has been sent

    Declaration

    Swift

    @objc optional func sendDidEnd(_ status: HitStatus, message: String)
  • Notify when hit has been saved in device local storage

    Declaration

    Swift

    @objc optional func saveDidEnd(_ message: String)
  • Notify when a partner has been called

    Declaration

    Swift

    @objc optional func didCallPartner(_ response: String)
  • Notify when a warning has been detected

    Declaration

    Swift

    @objc optional func warningDidOccur(_ message: String)
  • Notify when a critical error has been detected

    Declaration

    Swift

    @objc optional func errorDidOccur(_ message: String)