Event

public enum Event : CustomStringConvertible

Usage Event

  • Marks the starts of a session - application start, application foreground.

    Declaration

    Swift

    case sessionStart
  • Marks the end of session - if possible to report.

    Declaration

    Swift

    case sessionEnd
  • Custom event, can be anything but the previous events.

    Declaration

    Swift

    case event(String)
  • Can be any event which start, must follow later and eventEnd.

    Declaration

    Swift

    case eventStart(String)
  • Can be any event, must precede an eventStart.

    Declaration

    Swift

    case eventEnd(String)
  • The sort description of the event

    Declaration

    Swift

    public var description: String { get }