CallbackBackoffStrategy
extends AbstractBackoffStrategy
in package
Strategy that will invoke a closure to determine whether or not to retry with a delay
Table of Contents
Properties
- $callback : Closure|array<string|int, mixed>|mixed
- $decision : bool
- $next : AbstractBackoffStrategy
Methods
- __construct() : mixed
- getBackoffPeriod() : bool|int
- Get the amount of time to delay in seconds before retrying a request
- getNext() : AbstractBackoffStrategy|null
- Get the next backoff strategy in the chain
- makesDecision() : bool
- Check if the strategy does filtering and makes decisions on whether or not to retry.
- setNext() : mixed
- getDelay() : bool|int|null
- Implement the concrete strategy
Properties
$callback
protected
Closure|array<string|int, mixed>|mixed
$callback
Callable method to invoke
$decision
protected
bool
$decision
Whether or not this strategy makes a retry decision
$next
protected
AbstractBackoffStrategy
$next
Next strategy in the chain
Methods
__construct()
public
__construct(Closure|array<string|int, mixed>|mixed $callback, bool $decision[, BackoffStrategyInterface $next = null ]) : mixed
Parameters
- $callback : Closure|array<string|int, mixed>|mixed
-
Callable method to invoke
- $decision : bool
-
Set to true if this strategy makes a backoff decision
- $next : BackoffStrategyInterface = null
-
The optional next strategy
Tags
getBackoffPeriod()
Get the amount of time to delay in seconds before retrying a request
public
getBackoffPeriod(mixed $retries, RequestInterface $request[, Response $response = null ][, HttpException $e = null ]) : bool|int
Parameters
- $retries : mixed
-
Number of retries of the request
- $request : RequestInterface
-
Request that was sent
- $response : Response = null
-
Response that was received. Note that there may not be a response
- $e : HttpException = null
-
Exception that was encountered if any
Return values
bool|int —Returns false to not retry or the number of seconds to delay between retries
getNext()
Get the next backoff strategy in the chain
public
getNext() : AbstractBackoffStrategy|null
Return values
AbstractBackoffStrategy|nullmakesDecision()
Check if the strategy does filtering and makes decisions on whether or not to retry.
public
makesDecision() : bool
Strategies that return false will never retry if all of the previous strategies in a chain defer on a backoff decision.
Return values
boolsetNext()
public
setNext(AbstractBackoffStrategy $next) : mixed
Parameters
- $next : AbstractBackoffStrategy
-
Next strategy in the chain
getDelay()
Implement the concrete strategy
protected
getDelay(mixed $retries, RequestInterface $request[, Response $response = null ][, HttpException $e = null ]) : bool|int|null
Parameters
- $retries : mixed
-
Number of retries of the request
- $request : RequestInterface
-
Request that was sent
- $response : Response = null
-
Response that was received. Note that there may not be a response
- $e : HttpException = null
-
Exception that was encountered if any
Return values
bool|int|null —Returns false to not retry or the number of seconds to delay between retries. Return true or null to defer to the next strategy if available, and if not, return 0.