QueueServiceProvider::when()

array when() Get the events that trigger this service provider to register. Return Value array

QueueServiceProvider::__construct()

void __construct(Application $app) Create a new service provider instance. Parameters Application $app Return Value void

Queue\Capsule

Illuminate\Queue\Capsule Classes Manager

Queue\Connectors

Illuminate\Queue\Connectors Classes BeanstalkdConnector IronConnector RedisConnector SqsConnector SyncConnector

Queue\Console

Illuminate\Queue\Console Classes FailedTableCommand FlushFailedCommand ForgetFailedCommand ListFailedCommand ListenCommand RestartCommand RetryCommand SubscribeCommand WorkCommand

Queue\Events

Illuminate\Queue\Events Classes JobExceptionOccurred JobFailed JobProcessed JobProcessing WorkerStopping

Queue\Failed

Illuminate\Queue\Failed Classes DatabaseFailedJobProvider

Queue\Jobs

Illuminate\Queue\Jobs Classes BeanstalkdJob IronJob Job RedisJob SqsJob SyncJob

RateLimiter

RateLimiter class RateLimiter (View source) Methods void __construct(Repository $cache) Create a new rate limiter instance. bool tooManyAttempts(string $key, int $maxAttempts, float|int $decayMinutes = 1) Determine if the given key has been "accessed" too many times. int hit(string $key, float|int $decayMinutes = 1) Increment the counter for a given key for a given decay time. mixed attempts(string $key) Get the number of attempts for the given key. mixed resetAttempts

RateLimiter::attempts()

mixed attempts(string $key) Get the number of attempts for the given key. Parameters string $key Return Value mixed