class 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
isReleased()

Determine if the job was released 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
getRawBody()

Get the raw body string for the job.

void
failed()

Call the failed method on the job instance.

string
getName()

Get the name of the queued job class.

string
getQueue()

Get the name of the queue the job belongs to.

Details

at line line 50
abstract void fire()

Fire the job.

Return Value

void

at line line 57
void delete()

Delete the job from the queue.

Return Value

void

at line line 67
bool isDeleted()

Determine if the job has been deleted.

Return Value

bool

at line line 78
void release( int $delay)

Release the job back into the queue.

Parameters

int $delay

Return Value

void

at line line 88
bool isReleased()

Determine if the job was released back into the queue.

Return Value

bool

at line line 98
bool isDeletedOrReleased()

Determine if the job has been deleted or released.

Return Value

bool

at line line 108
abstract int attempts()

Get the number of times the job has been attempted.

Return Value

int

at line line 115
abstract string getRawBody()

Get the raw body string for the job.

Return Value

string

at line line 203
void failed()

Call the failed method on the job instance.

Return Value

void

at line line 256
string getName()

Get the name of the queued job class.

Return Value

string

at line line 266
string getQueue()

Get the name of the queue the job belongs to.

Return Value

string