EventReporter

@objc
public protocol EventReporter

EventReporter process data. It will be called in DefaultEventAnalyticsController.

  • Process the event. For instance, in the default implementation, it will save it to Event Table.

    Declaration

    Swift

    func report(event: SDKEvent)

    Parameters

    event

    SDK related events

  • Start the EventReporter

    Declaration

    Swift

    func start()
  • Stop the EventReporter

    Declaration

    Swift

    func stop()