ApplicationStatus

public struct ApplicationStatus

Represents the current status of the application lifecycle.

  • The type of status change that occurred.

    Declaration

    Swift

    public let type: StatusType
  • The timestamp when this status change occurred, in milliseconds since Unix epoch.

    Declaration

    Swift

    public let timestamp: Int64
  • Creates a new application status.

    Declaration

    Swift

    public init(type: StatusType, timestamp: Int64 = Date().unixTimeMilliseconds)

    Parameters

    type

    The type of status change.

    timestamp

    The timestamp of the change, defaults to current time.

  • The different types of application status changes.

    See more

    Declaration

    Swift

    public enum StatusType