class PendingDispatch

Methods

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
delay(DateTime|int|null $delay)

Set the desired delay for the job.

void
__destruct()

Handle the object's destruction.

Details

at line 13
void __construct(mixed $job)

Create a new pending job dispatch.

Parameters

mixed $job

Return Value

void

at line 24
$this onConnection(string|null $connection)

Set the desired connection for the job.

Parameters

string|null $connection

Return Value

$this

at line 37
$this onQueue(string|null $queue)

Set the desired queue for the job.

Parameters

string|null $queue

Return Value

$this

at line 50
$this delay(DateTime|int|null $delay)

Set the desired delay for the job.

Parameters

DateTime|int|null $delay

Return Value

$this

at line 62
void __destruct()

Handle the object's destruction.

Return Value

void