Repository URL to install this package:
|
Version:
6.2.3 ▾
|
<?php
namespace JMS\JobQueueBundle\Retry;
use JMS\JobQueueBundle\Entity\Job;
class ExponentialRetryScheduler implements RetryScheduler
{
private $base;
public function __construct($base = 5)
{
$this->base = $base;
}
public function scheduleNextRetry(Job $originalJob)
{
return new \DateTime('+'.(pow($this->base, count($originalJob->getRetryJobs()))).' seconds');
}
}