TrackResult

public struct TrackResult : CustomStringConvertible

Track result shows whether the dispatch being tracked has been enqueued for further processing or not along with some relevant information like the Dispatch after it’s been collected, transformed and consented and some readable info about the status of the dispatch.

  • Informs if the Dispatch has been accepted for processing, or dropped.

    See more

    Declaration

    Swift

    public enum Status : CustomStringConvertible
  • The Dispatch after it’s been collected, transformed and consented.

    Declaration

    Swift

    public let dispatch: Dispatch
  • The status that can be accepted for processing or dropped.

    Declaration

    Swift

    public let status: Status
  • Some human readable info regarding the reason behind the status decision.

    Declaration

    Swift

    public let info: String
  • Declaration

    Swift

    public var description: String { get }