class DatabaseJobRecord

Traits

Properties

protected stdClass $record

The underlying job record.

Methods

int
secondsUntil(DateTimeInterface $delay)

Get the number of seconds until the given DateTime.

int
availableAt(DateTimeInterface|int $delay = 0)

Get the "available at" UNIX timestamp.

int
currentTime()

Get the current system time as a UNIX timestamp.

void
__construct(stdClass $record)

Create a new job record instance.

int
increment()

Increment the number of times the job has been attempted.

int
touch()

Update the "reserved at" timestamp of the job.

mixed
__get(string $key)

Dynamically access the underlying job information.

Details

in InteractsWithTime at line 16
protected int secondsUntil(DateTimeInterface $delay)

Get the number of seconds until the given DateTime.

Parameters

DateTimeInterface $delay

Return Value

int

in InteractsWithTime at line 29
protected int availableAt(DateTimeInterface|int $delay = 0)

Get the "available at" UNIX timestamp.

Parameters

DateTimeInterface|int $delay

Return Value

int

in InteractsWithTime at line 41
protected int currentTime()

Get the current system time as a UNIX timestamp.

Return Value

int

at line 24
void __construct(stdClass $record)

Create a new job record instance.

Parameters

stdClass $record

Return Value

void

at line 34
int increment()

Increment the number of times the job has been attempted.

Return Value

int

at line 46
int touch()

Update the "reserved at" timestamp of the job.

Return Value

int

at line 59
mixed __get(string $key)

Dynamically access the underlying job information.

Parameters

string $key

Return Value

mixed