class PendingClosureDispatch extends PendingDispatch (View source)
protected mixed | $job | The job. | from PendingDispatch |
protected bool | $afterResponse | Indicates if the job should be dispatched immediately after sending the response. | from PendingDispatch |
void | __construct(mixed $job) Create a new pending job dispatch. | from PendingDispatch |
$this | onConnection(string|null $connection) Set the desired connection for the job. | from PendingDispatch |
$this | onQueue(string|null $queue) Set the desired queue for the job. | from PendingDispatch |
$this | allOnConnection(string|null $connection) Set the desired connection for the chain. | from PendingDispatch |
$this | allOnQueue(string|null $queue) Set the desired queue for the chain. | from PendingDispatch |
$this | delay(DateTimeInterface|DateInterval|int|null $delay) Set the desired delay for the job. | from PendingDispatch |
$this | chain(array $chain) Set the jobs that should run if this job is successful. | from PendingDispatch |
$this | afterResponse() Indicate that the job should be dispatched after the response is sent to the browser. | from PendingDispatch |
bool | shouldDispatch() Determine if the job should be dispatched. | from PendingDispatch |
$this | __call(string $method, array $parameters) Dynamically proxy methods to the underlying job. | from PendingDispatch |
void | __destruct() Handle the object's destruction. | from PendingDispatch |
$this | catch(Closure $callback) Add a callback to be executed if the job fails. |
Create a new pending job dispatch.
Set the desired connection for the job.
Set the desired queue for the job.
Set the desired connection for the chain.
Set the desired queue for the chain.
Set the desired delay for the job.
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.
Determine if the job should be dispatched.
Dynamically proxy methods to the underlying job.
Handle the object's destruction.
Add a callback to be executed if the job fails.
© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/8.x/Illuminate/Foundation/Bus/PendingClosureDispatch.html