redis = Container::getInstance() ->make(Redis::class) ->connection($this->connectionName); $this->limiter = new DurationLimiter( $this->redis, $this->getKey($job), $this->maxAttempts, $this->decaySeconds ); if ($this->limiter->tooManyAttempts()) { return $job->release($this->limiter->decaysAt - $this->currentTime()); } try { $next($job); $this->limiter->clear(); } catch (Throwable $throwable) { if ($this->whenCallback && ! call_user_func($this->whenCallback, $throwable, $this->limiter)) { throw $throwable; } if ($this->reportCallback && call_user_func($this->reportCallback, $throwable, $this->limiter)) { report($throwable); } if ($this->shouldDelete($throwable)) { return $job->delete(); } if ($this->shouldFail($throwable)) { return $job->fail($throwable); } $this->limiter->acquire(); return $job->release($this->getTimeUntilNextRetryAfterException($throwable)); } } /** * Specify the Redis connection that should be used. * * @param string $name * @return $this */ public function connection(string $name) { $this->connectionName = $name; return $this; } }