SyncJob
class SyncJob extends Job
Traits
Properties
| protected mixed | $instance | The job handler instance. |
from Job |
| protected array|null | $decodedPayload | The validated job payload. |
from Job |
| protected InvalidPayloadException|null | $payloadException | The exception raised while validating the job payload. |
from Job |
| protected Container | $container | The IoC container instance. |
from Job |
| protected bool | $deleted | Indicates if the job has been deleted. |
from Job |
| protected bool | $released | Indicates if the job has been released. |
from Job |
| protected bool | $failed | Indicates if the job has failed. |
from Job |
| protected string | $connectionName | The name of the connection the job belongs to. |
from Job |
| protected string | $queue | The name of the queue the job belongs to. |
from Job |
| protected Lease|null | $poolLease | The lease pinning this job's pooled backend until a terminal operation. |
from Job |
| protected bool | $poolLeaseAttached | Indicates whether this job has ever carried a pool lease. |
from Job |
| protected string | $job | The class name of the job. |
Methods
Get the number of seconds until the given DateTime.
Get the "available at" UNIX timestamp.
If the given value is an interval, convert it to a DateTime instance.
Given a start time, format the total run time for human readability.
Get the job identifier.
Get the raw body string for the job.
Initialize state that must be captured while the backend is pinned.
Determine whether a previously attached backend lease is finalized.
Discard a backend after failure without masking the primary exception.
Release the job back into the queue after (n) seconds.
Delete the job, call the "failed" method, and raise the failed job event.
Determine if the current database transaction should be rolled back to level zero.
The number of seconds to wait before retrying a job that encountered an uncaught exception.
Get the name of the queue the job belongs to.
Create a new job instance.
Get the number of times the job has been attempted.
Details
in
InteractsWithTime at line 17
protected int
secondsUntil(DateInterval|DateTimeInterface|int $delay)
Get the number of seconds until the given DateTime.
in
InteractsWithTime at line 29
protected int
availableAt(DateInterval|DateTimeInterface|int|null $delay = 0)
Get the "available at" UNIX timestamp.
in
InteractsWithTime at line 41
protected DateTimeInterface|int
parseDateInterval(DateInterval|DateTimeInterface|int|null $delay)
If the given value is an interval, convert it to a DateTime instance.
in
InteractsWithTime at line 57
protected int
currentTime()
Get the current system time as a UNIX timestamp.
in
InteractsWithTime at line 65
protected string
runTimeForHumans(float $startTime, float|null $endTime = null)
Given a start time, format the total run time for human readability.
at line 46
int|string|null
getJobId()
Get the job identifier.
at line 54
string
getRawBody()
Get the raw body string for the job.
in
Job at line 113
protected void
onPoolLeaseAttached()
Initialize state that must be captured while the backend is pinned.
in
Job at line 120
protected void
releasePoolLease()
Return the pinned backend to its pool.
in
Job at line 131
protected void
discardPoolLease()
Discard the pinned backend instead of returning it to its pool.
in
Job at line 142
protected bool
poolLeaseIsFinalized()
Determine whether a previously attached backend lease is finalized.
in
Job at line 150
protected never
discardPoolLeaseAfterFailure(Throwable $exception)
Discard a backend after failure without masking the primary exception.
in
Job at line 164
string|null
uuid()
Get the UUID of the job.
in
Job at line 172
void
fire()
Fire the job.
in
Job at line 184
void
delete()
Delete the job from the queue.
in
Job at line 192
bool
isDeleted()
Determine if the job has been deleted.
at line 30
void
release(int $delay = 0)
Release the job back into the queue after (n) seconds.
in
Job at line 208
bool
isReleased()
Determine if the job was released back into the queue.
in
Job at line 216
bool
isDeletedOrReleased()
Determine if the job has been deleted or released.
in
Job at line 224
bool
hasFailed()
Determine if the job has been marked as a failure.
in
Job at line 232
void
markAsFailed()
Mark the job as "failed".
in
Job at line 240
void
fail(Throwable|null $e = null)
Delete the job, call the "failed" method, and raise the failed job event.
in
Job at line 300
protected bool
shouldRollBackDatabaseTransaction(Throwable|null $e)
Determine if the current database transaction should be rolled back to level zero.
in
Job at line 316
protected void
failed(Throwable|null $e)
Process an exception that caused the job to fail.
in
Job at line 330
protected mixed
resolve(string $class)
Resolve the given class.
in
Job at line 338
mixed
getResolvedJob()
Get the resolved job handler instance.
in
Job at line 346
array
payload()
Get the decoded body of the job.
in
Job at line 387
int|null
maxTries()
Get the number of times to attempt a job.
in
Job at line 395
int|null
maxExceptions()
Get the number of times to attempt a job after an exception.
in
Job at line 403
bool
shouldFailOnTimeout()
Determine if the job should fail when it timeouts.
in
Job at line 413
array|int|null
backoff()
The number of seconds to wait before retrying a job that encountered an uncaught exception.
in
Job at line 421
int|null
timeout()
Get the number of seconds the job can run.
in
Job at line 429
int|null
retryUntil()
Get the timestamp indicating when the job should timeout.
in
Job at line 437
string
getName()
Get the name of the queued job class.
in
Job at line 447
string
resolveName()
Get the resolved name of the queued job class.
Resolves the name of "wrapped" jobs such as class-based handlers.
in
Job at line 457
string
resolveQueuedJobClass()
Get the class of the queued job.
Resolves the class of "wrapped" jobs such as class-based handlers.
in
Job at line 465
string
getConnectionName()
Get the name of the connection the job belongs to.
at line 62
string
getQueue()
Get the name of the queue the job belongs to.
at line 19
__construct(Container $container, string $payload, string $connectionName, string $queue)
Create a new job instance.
at line 38
int
attempts()
Get the number of times the job has been attempted.