PendingDispatch
class PendingDispatch
Traits
Properties
| protected bool | $afterResponse | Indicates if the job should be dispatched immediately after sending the response. |
Methods
Apply the callback if the given "value" is (or resolves to) truthy.
Apply the callback if the given "value" is (or resolves to) falsy.
Get a configuration value from an attribute, falling back to a property.
Extract the value from an attribute instance.
Get an instance of the given attribute class from the target class or its parents.
Determine if a property declared on a child class overrides an inherited attribute.
Create a new pending job dispatch.
Set the desired connection for the job.
Set the desired queue for the job.
Set the desired job message group.
Set the desired job deduplicator callback.
Set the desired connection for the chain.
Set the desired queue for the chain.
Set the delay for the job to zero seconds.
Indicate that the job should be dispatched after all database transactions have committed.
Indicate that the job should not wait until database transactions have been committed before dispatching.
Set the jobs that should run if this job is successful.
Indicate that the job should be dispatched after the response is sent to the browser.
Get the underlying job instance.
Determine if the job should be dispatched.
Acquire a debounce lock for the job and set its delay.
Dynamically proxy methods to the underlying job.
Handle the object's destruction.
Details
in
Conditionable at line 23
mixed
when(mixed $value = null, callable|null $callback = null, callable|null $default = null)
Apply the callback if the given "value" is (or resolves to) truthy.
in
Conditionable at line 56
mixed
unless(mixed $value = null, callable|null $callback = null, callable|null $default = null)
Apply the callback if the given "value" is (or resolves to) falsy.
in
ReadsClassAttributes at line 15
protected mixed
getAttributeValue(object $target, string $attributeClass, string|null $property = null, mixed $default = null)
Get a configuration value from an attribute, falling back to a property.
in
ReadsClassAttributes at line 44
protected mixed
extractAttributeValue(object $instance)
Extract the value from an attribute instance.
in
ReadsClassAttributes at line 54
protected object|null
getAttributeInstance(object $target, string $attributeClass, ReflectionClass|null $declaringClass = null)
Get an instance of the given attribute class from the target class or its parents.
in
ReadsClassAttributes at line 70
protected bool
propertyOverridesAttribute(object $target, ReflectionClass $reflection, string|null $property, ReflectionClass $attributeDeclaringClass)
Determine if a property declared on a child class overrides an inherited attribute.
at line 36
__construct(mixed $job)
Create a new pending job dispatch.
at line 44
PendingDispatch
onConnection(UnitEnum|string|null $connection)
Set the desired connection for the job.
at line 54
PendingDispatch
onQueue(UnitEnum|string|null $queue)
Set the desired queue for the job.
at line 66
PendingDispatch
onGroup(array|UnitEnum|string|int|null $group)
Set the desired job message group.
This feature is only supported by some queues, such as Amazon SQS.
at line 80
PendingDispatch
withDeduplicator(array|callable|null $deduplicator)
Set the desired job deduplicator callback.
This feature is only supported by some queues, such as Amazon SQS FIFO.
at line 90
PendingDispatch
allOnConnection(UnitEnum|string|null $connection)
Set the desired connection for the chain.
at line 100
PendingDispatch
allOnQueue(UnitEnum|string|null $queue)
Set the desired queue for the chain.
at line 110
PendingDispatch
delay(DateInterval|DateTimeInterface|int|null $delay)
Set the desired delay in seconds for the job.
at line 120
PendingDispatch
withoutDelay()
Set the delay for the job to zero seconds.
at line 130
PendingDispatch
afterCommit()
Indicate that the job should be dispatched after all database transactions have committed.
at line 140
PendingDispatch
beforeCommit()
Indicate that the job should not wait until database transactions have been committed before dispatching.
at line 150
PendingDispatch
chain(array $chain)
Set the jobs that should run if this job is successful.
at line 160
PendingDispatch
afterResponse(bool $afterResponse = true)
Indicate that the job should be dispatched after the response is sent to the browser.
at line 170
mixed
getJob()
Get the underlying job instance.
at line 178
protected bool
shouldDispatch()
Determine if the job should be dispatched.
at line 204
protected void
acquireDebounceLock()
Acquire a debounce lock for the job and set its delay.
at line 226
PendingDispatch
__call(string $method, array $parameters)
Dynamically proxy methods to the underlying job.
at line 236
__destruct()
Handle the object's destruction.