class RedisJob extends Job implements 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.

from Job
void
release( int $delay)

Release the job back into the queue.

bool
isReleased()

Determine if the job was released back into the queue.

from Job
bool
isDeletedOrReleased()

Determine if the job has been deleted or released.

from Job
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.

from Job
string
getName()

Get the name of the queued job class.

from Job
string
getQueue()

Get the name of the queue the job belongs to.

from Job
__construct( Container $container, RedisQueue $redis, string $job, string $reserved, string $queue)

Create a new job instance.

string
getJobId()

Get the job identifier.

getContainer()

Get the IoC container instance.

getRedisQueue()

Get the underlying queue driver instance.

string
getRedisJob()

Get the underlying Redis job.

string
getReservedJob()

Get the underlying reserved Redis job.

Details

at line line 56
void fire()

Fire the job.

Return Value

void

at line line 76
void delete()

Delete the job from the queue.

Return Value

void

in Job at line line 67
bool isDeleted()

Determine if the job has been deleted.

Return Value

bool

at line line 89
void release( int $delay)

Release the job back into the queue.

Parameters

int $delay

Return Value

void

in Job at line line 88
bool isReleased()

Determine if the job was released back into the queue.

Return Value

bool

in Job at line line 98
bool isDeletedOrReleased()

Determine if the job has been deleted or released.

Return Value

bool

at line line 101
int attempts()

Get the number of times the job has been attempted.

Return Value

int

at line line 66
string getRawBody()

Get the raw body string for the job.

Return Value

string

in Job at line line 203
void failed()

Call the failed method on the job instance.

Return Value

void

in Job at line line 256
string getName()

Get the name of the queued job class.

Return Value

string

in Job at line line 266
string getQueue()

Get the name of the queue the job belongs to.

Return Value

string

at line line 42
__construct( Container $container, RedisQueue $redis, string $job, string $reserved, string $queue)

Create a new job instance.

Parameters

Container $container
RedisQueue $redis
string $job
string $reserved
string $queue

at line line 111
string getJobId()

Get the job identifier.

Return Value

string

at line line 121
Container getContainer()

Get the IoC container instance.

Return Value

Container

at line line 131
Database getRedisQueue()

Get the underlying queue driver instance.

Return Value

Database

at line line 141
string getRedisJob()

Get the underlying Redis job.

Return Value

string

at line line 151
string getReservedJob()

Get the underlying reserved Redis job.

Return Value

string