SqsJob

SqsJob

class SqsJob extends Job implements Job (View source)

Methods

int attempts()

Get the number of times the job has been attempted.

string getRawBody()

Get the raw body string for the job.

void fire()

Fire the job.

from 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
void failed(Exception $e)

Call the failed method on the job instance.

from Job
string getName()

Get the name of the queued job class.

from Job
string resolveName()

Get the resolved name of the queued job class.

from Job
array payload()

Get the decoded body of the job.

from Job
string getQueue()

Get the name of the queue the job belongs to.

from Job
Container getContainer()

Get the service container instance.

from Job
void __construct(Container $container, SqsClient $sqs, string $queue, array $job)

Create a new job instance.

string getJobId()

Get the job identifier.

SqsClient getSqs()

Get the underlying SQS client instance.

array getSqsJob()

Get the underlying raw SQS job.

doc_Laravel
2016-11-02 16:40:40
Comments
Leave a Comment

Please login to continue.