W3cubDocs

/Laravel 5.8

FailedJobProviderInterface

interface FailedJobProviderInterface (View source)

Methods

int|null log(string $connection, string $queue, string $payload, Exception $exception)

Log a failed job into storage.

array all()

Get a list of all of the failed jobs.

object|null find(mixed $id)

Get a single failed job.

bool forget(mixed $id)

Delete a single failed job from storage.

void flush()

Flush all of the failed jobs from storage.

Details

int|null log(string $connection, string $queue, string $payload, Exception $exception)

Log a failed job into storage.

Parameters

string $connection
string $queue
string $payload
Exception $exception

Return Value

int|null

array all()

Get a list of all of the failed jobs.

Return Value

array

object|null find(mixed $id)

Get a single failed job.

Parameters

mixed $id

Return Value

object|null

bool forget(mixed $id)

Delete a single failed job from storage.

Parameters

mixed $id

Return Value

bool

void flush()

Flush all of the failed jobs from storage.

Return Value

void

© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/5.8/Illuminate/Queue/Failed/FailedJobProviderInterface.html