Job
abstract class Job (View source)
Traits
InteractsWithTime |
Properties
protected mixed | $instance | The job handler instance. | |
protected Container | $container | The IoC container instance. | |
protected bool | $deleted | Indicates if the job has been deleted. | |
protected bool | $released | Indicates if the job has been released. | |
protected bool | $failed | Indicates if the job has failed. | |
protected string | $connectionName | The name of the connection the job belongs to. | |
protected string | $queue | The name of the queue the job belongs to. |
Methods
int | secondsUntil(DateTimeInterface|DateInterval|int $delay) Get the number of seconds until the given DateTime. | from InteractsWithTime |
int | availableAt(DateTimeInterface|DateInterval|int $delay = 0) Get the "available at" UNIX timestamp. | from InteractsWithTime |
DateTimeInterface|int | parseDateInterval(DateTimeInterface|DateInterval|int $delay) If the given value is an interval, convert it to a DateTime instance. | from InteractsWithTime |
int | currentTime() Get the current system time as a UNIX timestamp. | from InteractsWithTime |
string | getJobId() Get the job identifier. | |
string | getRawBody() Get the raw body of the job. | |
string|null | uuid() Get the UUID of the job. | |
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 = 0) 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. | |
bool | hasFailed() Determine if the job has been marked as a failure. | |
void | markAsFailed() Mark the job as "failed". | |
void | fail(Throwable|null $e = null) Delete the job, call the "failed" method, and raise the failed job event. | |
void | failed(Throwable|null $e) Process an exception that caused the job to fail. | |
mixed | resolve(string $class) Resolve the given class. | |
mixed | getResolvedJob() Get the resolved job handler instance. | |
array | payload() Get the decoded body of the job. | |
int|null | maxTries() Get the number of times to attempt a job. | |
int|null | maxExceptions() Get the number of times to attempt a job after an exception. | |
int|null | delaySeconds() Get the number of seconds to delay a failed job before retrying it. | |
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. | |
Container | getContainer() Get the service container instance. |
Details
protected int secondsUntil(DateTimeInterface|DateInterval|int $delay)
Get the number of seconds until the given DateTime.
protected int availableAt(DateTimeInterface|DateInterval|int $delay = 0)
Get the "available at" UNIX timestamp.
protected DateTimeInterface|int parseDateInterval(DateTimeInterface|DateInterval|int $delay)
If the given value is an interval, convert it to a DateTime instance.
protected int currentTime()
Get the current system time as a UNIX timestamp.
abstract string getJobId()
Get the job identifier.
abstract string getRawBody()
Get the raw body of the job.
string|null uuid()
Get the UUID of the job.
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 = 0)
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.
bool hasFailed()
Determine if the job has been marked as a failure.
void markAsFailed()
Mark the job as "failed".
void fail(Throwable|null $e = null)
Delete the job, call the "failed" method, and raise the failed job event.
protected void failed(Throwable|null $e)
Process an exception that caused the job to fail.
protected mixed resolve(string $class)
Resolve the given class.
mixed getResolvedJob()
Get the resolved job handler instance.
array payload()
Get the decoded body of the job.
int|null maxTries()
Get the number of times to attempt a job.
int|null maxExceptions()
Get the number of times to attempt a job after an exception.
int|null delaySeconds()
Get the number of seconds to delay a failed job before retrying it.
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.
Resolves the name of "wrapped" jobs such as class-based handlers.
string getConnectionName()
Get the name of the connection the job belongs to.
string getQueue()
Get the name of the queue the job belongs to.
Container getContainer()
Get the service container instance.
© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/7.x/Illuminate/Queue/Jobs/Job.html