Job

interface Job (View source)

Methods

string getJobId()

Get the job identifier.

array payload()

Get the decoded body of the job.

void fire()

Fire the job.

mixed release(int $delay = 0)

Release the job back into the queue.

void delete()

Delete the job from the queue.

bool isDeleted()

Determine if the job has been deleted.

bool isDeletedOrReleased()

Determine if the job has been deleted or released.

int attempts()

Get the number of times the job has been attempted.

void failed(Throwable $e)

Process an exception that caused the job to fail.

int|null maxTries()

Get the number of times to attempt a job.

int|null timeout()

Get the number of seconds the job can run.

int|null timeoutAt()

Get the timestamp indicating when the job should timeout.

string getName()

Get the name of the queued job class.

string resolveName()

Get the resolved name of the queued job class.

string getConnectionName()

Get the name of the connection the job belongs to.

string getQueue()

Get the name of the queue the job belongs to.

string getRawBody()

Get the raw body string for the job.

Details

string getJobId()

Get the job identifier.

Return Value

string

array payload()

Get the decoded body of the job.

Return Value

array

void fire()

Fire the job.

Return Value

void

mixed release(int $delay = 0)

Release the job back into the queue.

Parameters

int $delay

Return Value

mixed

void delete()

Delete the job from the queue.

Return Value

void

bool isDeleted()

Determine if the job has been deleted.

Return Value

bool

bool isDeletedOrReleased()

Determine if the job has been deleted or released.

Return Value

bool

int attempts()

Get the number of times the job has been attempted.

Return Value

int

void failed(Throwable $e)

Process an exception that caused the job to fail.

Parameters

Throwable $e

Return Value

void

int|null maxTries()

Get the number of times to attempt a job.

Return Value

int|null

int|null timeout()

Get the number of seconds the job can run.

Return Value

int|null

int|null timeoutAt()

Get the timestamp indicating when the job should timeout.

Return Value

int|null

string getName()

Get the name of the queued job class.

Return Value

string

string resolveName()

Get the resolved name of the queued job class.

Resolves the name of "wrapped" jobs such as class-based handlers.

Return Value

string

string getConnectionName()

Get the name of the connection the job belongs to.

Return Value

string

string getQueue()

Get the name of the queue the job belongs to.

Return Value

string

string getRawBody()

Get the raw body string for the job.

Return Value

string

© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/5.7/Illuminate/Contracts/Queue/Job.html