Progress

public enum Progress : Equatable

The progress of a single routing fetch request

  • Optional step at the beginning to locate the user, if the request starts or ends at the user’s current location.

    Declaration

    Swift

    case locating
  • Results are being fetched, indiciating the total number of requests.

    Declaration

    Swift

    case started(total: Int)
  • The provided number of the provided total have been fetched.

    Declaration

    Swift

    case partial(completed: Int, total: Int)
  • All results have been fetched.

    Declaration

    Swift

    case finished