Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface RetryFunction

Hierarchy

  • RetryFunction

Callable

  • Determines whether a failed data operation should be retried. Returning a resolved promise means to retry the data operation. A rejected promise means not to retry the data operation.

    Parameters

    • request: Request

      The Request object.

    • response: Response

      The Response object.

    Returns Promise<void>

    Resolving the promise means to retry the data operation. Rejecting the promise means not to retry the data operation.