PendingClosureDispatch
class PendingClosureDispatch extends PendingDispatch (View source)
Properties
| protected mixed | $job | The job.  | 
                from PendingDispatch | 
| protected bool | $afterResponse | Indicates if the job should be dispatched immediately after sending the response.  | 
                from PendingDispatch | 
Methods
Set the desired connection for the job.
Set the desired connection for the chain.
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.
Dynamically proxy methods to the underlying job.
Details
        
                            void
    __construct(mixed $job)
        
    
    Create a new pending job dispatch.
        
                            $this
    onConnection(string|null $connection)
        
    
    Set the desired connection for the job.
        
                            $this
    onQueue(string|null $queue)
        
    
    Set the desired queue for the job.
        
                            $this
    allOnConnection(string|null $connection)
        
    
    Set the desired connection for the chain.
        
                            $this
    allOnQueue(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
    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.
        
                    protected        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.
        
                            $this
    catch(Closure $callback)
        
    
    Add a callback to be executed if the job fails.