Job
abstract class Job (View source)
Properties
protected mixed | $instance | The job handler instance. |
|
protected Container | $container | The IoC container instance. |
|
protected string | $queue | The name of the queue the job belongs to. |
|
protected bool | $deleted | Indicates if the job has been deleted. |
Methods
Fire the job.
Delete the job from the queue.
Determine if the job has been deleted.
Release the job back into the queue.
Get the number of times the job has been attempted.
Get the raw body string for the job.
Resolve and fire the job handler method.
Resolve the given job handler.
Parse the job declaration into class and method.
Determine if job should be auto-deleted.
Get the current system time.
Get the name of the queued job class.
Get the name of the queue the job belongs to.
Details
abstract void
fire()
Fire the job.
void
delete()
Delete the job from the queue.
bool
isDeleted()
Determine if the job has been deleted.
abstract void
release(int $delay = 0)
Release the job back into the queue.
abstract int
attempts()
Get the number of times the job has been attempted.
abstract string
getRawBody()
Get the raw body string for the job.
protected void
resolveAndFire(array $payload)
Resolve and fire the job handler method.
protected mixed
resolve(string $class)
Resolve the given job handler.
protected array
parseJob(string $job)
Parse the job declaration into class and method.
bool
autoDelete()
Determine if job should be auto-deleted.
protected int
getSeconds(DateTime|int $delay)
Calculate the number of seconds with the given delay.
protected int
getTime()
Get the current system time.
string
getName()
Get the name of the queued job class.
string
getQueue()
Get the name of the queue the job belongs to.