class PendingDispatch (View source)

Properties

protected mixed $job

The job.

protected bool $afterResponse

Indicates if the job should be dispatched immediately after sending the response.

Methods

void
__construct(mixed $job)

Create a new pending job dispatch.

$this
onConnection(BackedEnum|string|null $connection)

Set the desired connection for the job.

$this
onQueue(BackedEnum|string|null $queue)

Set the desired queue for the job.

$this
allOnConnection(BackedEnum|string|null $connection)

Set the desired connection for the chain.

$this
allOnQueue(BackedEnum|string|null $queue)

Set the desired queue for the chain.

$this
delay(DateTimeInterface|DateInterval|int|null $delay)

Set the desired delay in seconds for the job.

$this
withoutDelay()

Set the delay for the job to zero seconds.

$this
afterCommit()

Indicate that the job should be dispatched after all database transactions have committed.

$this
beforeCommit()

Indicate that the job should not wait until database transactions have been committed before dispatching.

$this
chain(array $chain)

Set the jobs that should run if this job is successful.

$this
afterResponse()

Indicate that the job should be dispatched after the response is sent to the browser.

bool
shouldDispatch()

Determine if the job should be dispatched.

$this
__call(string $method, array $parameters)

Dynamically proxy methods to the underlying job.

void
__destruct()

Handle the object's destruction.

Details

void __construct(mixed $job)

Create a new pending job dispatch.

Parameters

mixed $job

Return Value

void

$this onConnection(BackedEnum|string|null $connection)

Set the desired connection for the job.

Parameters

BackedEnum|string|null $connection

Return Value

$this

$this onQueue(BackedEnum|string|null $queue)

Set the desired queue for the job.

Parameters

BackedEnum|string|null $queue

Return Value

$this

$this allOnConnection(BackedEnum|string|null $connection)

Set the desired connection for the chain.

Parameters

BackedEnum|string|null $connection

Return Value

$this

$this allOnQueue(BackedEnum|string|null $queue)

Set the desired queue for the chain.

Parameters

BackedEnum|string|null $queue

Return Value

$this

$this delay(DateTimeInterface|DateInterval|int|null $delay)

Set the desired delay in seconds for the job.

Parameters

DateTimeInterface|DateInterval|int|null $delay

Return Value

$this

$this withoutDelay()

Set the delay for the job to zero seconds.

Return Value

$this

$this afterCommit()

Indicate that the job should be dispatched after all database transactions have committed.

Return Value

$this

$this beforeCommit()

Indicate that the job should not wait until database transactions have been committed before dispatching.

Return Value

$this

$this chain(array $chain)

Set the jobs that should run if this job is successful.

Parameters

array $chain

Return Value

$this

$this afterResponse()

Indicate that the job should be dispatched after the response is sent to the browser.

Return Value

$this

protected bool shouldDispatch()

Determine if the job should be dispatched.

Return Value

bool

$this __call(string $method, array $parameters)

Dynamically proxy methods to the underlying job.

Parameters

string $method
array $parameters

Return Value

$this

void __destruct()

Handle the object's destruction.

Return Value

void