PollEmptyResult

public enum PollEmptyResult : CustomStringConvertible, JSONRepresentable

Result returned by methods that poll for the status of an asynchronous job. Upon completion of the job, no additional information is returned.

  • The asynchronous job is still in progress.

    Declaration

    Swift

    case inProgress
  • The asynchronous job has completed successfully.

    Declaration

    Swift

    case complete
  • Declaration

    Swift

    public var description: String { get }