Job

interface Job (View source)

Methods

void fire()

Fire the job.

void delete()

Delete the job from the queue.

bool isDeleted()

Determine if the job has been deleted.

void release(int $delay)

Release the job back into the queue.

bool isDeletedOrReleased()

Determine if the job has been deleted or released.

int attempts()

Get the number of times the job has been attempted.

string getName()

Get the name of the queued job class.

string resolveName()

Get the resolved name of the queued job class.

void failed(Throwable $e)

Call the failed method on the job instance.

string getQueue()

Get the name of the queue the job belongs to.

string getRawBody()

Get the raw body string for the job.

Details

void fire()

Fire the job.

Return Value

void

void delete()

Delete the job from the queue.

Return Value

void

bool isDeleted()

Determine if the job has been deleted.

Return Value

bool

void release(int $delay)

Release the job back into the queue.

Parameters

int $delay

Return Value

void

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

string getName()

Get the name of the queued job class.

Return Value

string

string resolveName()

Get the resolved name of the queued job class.

Return Value

string

void failed(Throwable $e)

Call the failed method on the job instance.

Parameters

Throwable $e

Return Value

void

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.3/Illuminate/Contracts/Queue/Job.html