InterceptionAction

public enum InterceptionAction

This will be used in interceptor callback as an action to inteceptors chain.

  • Continue with the next interceptor or final callbacks if there is no other interceptor in chain.

    Declaration

    Swift

    case `continue`
  • Retry the request

    Declaration

    Swift

    case retry(delay: TimeInterval?)