RSDIdentifier

public struct RSDIdentifier : RawRepresentable, Codable, Hashable

RSDIdentifier is intended to allow a developer to define constants for the identifiers that are used to define the tasks, steps, input fields, and async actions associated with a given task or task group.

  • Declaration

    Swift

    public let rawValue: String
  • Declaration

    Swift

    public init(rawValue: String)
  • Exit the activity.

    Declaration

    Swift

    public static let exit: RSDIdentifier
  • Continue to the next section.

    Declaration

    Swift

    public static let nextSection: RSDIdentifier
  • Continue to the next step.

    Declaration

    Swift

    public static let nextStep: RSDIdentifier
  • Identifier for a result that indicates the number of times the task has been run.

    Declaration

    Swift

    public static let taskRunCount: RSDIdentifier
  • Identifier for a result that indicates the reason why a task was exited.

    Declaration

    Swift

    public static let taskExitReason: RSDIdentifier
  • Declaration

    Swift

    public static func == (lhs: RSDIdentifier, rhs: RSDIdentifier) -> Bool