class ArrayLock extends Lock (View source)

Traits

Properties

protected string $name

The name of the lock.

from  Lock
protected int $seconds

The number of seconds the lock should be maintained.

from  Lock
protected string $owner

The scope identifier of this lock.

from  Lock
protected int $sleepMilliseconds

The number of milliseconds to wait before re-attempting to acquire a lock while blocking.

from  Lock
protected ArrayStore $store

The parent array cache store.

Methods

int
secondsUntil(DateTimeInterface|DateInterval|int $delay)

Get the number of seconds until the given DateTime.

int
availableAt(DateTimeInterface|DateInterval|int $delay = 0)

Get the "available at" UNIX timestamp.

parseDateInterval(DateTimeInterface|DateInterval|int $delay)

If the given value is an interval, convert it to a DateTime instance.

int
currentTime()

Get the current system time as a UNIX timestamp.

void
__construct(ArrayStore $store, string $name, int $seconds, string|null $owner = null)

Create a new lock instance.

bool
acquire()

Attempt to acquire the lock.

bool
release()

Release the lock.

string
getCurrentOwner()

Returns the owner value written into the driver for this lock.

mixed
get(callable|null $callback = null)

Attempt to acquire the lock.

from  Lock
mixed
block(int $seconds, callable|null $callback = null)

Attempt to acquire the lock for the given number of seconds.

from  Lock
string
owner()

Returns the current owner of the lock.

from  Lock
bool
isOwnedByCurrentProcess()

Determines whether this lock is allowed to release the lock in the driver.

from  Lock
$this
betweenBlockedAttemptsSleepFor(int $milliseconds)

Specify the number of milliseconds to sleep in between blocked lock acquisition attempts.

from  Lock
bool
exists()

Determine if the current lock exists.

void
forceRelease()

Releases this lock in disregard of ownership.

Details

protected int secondsUntil(DateTimeInterface|DateInterval|int $delay)

Get the number of seconds until the given DateTime.

Parameters

DateTimeInterface|DateInterval|int $delay

Return Value

int

protected int availableAt(DateTimeInterface|DateInterval|int $delay = 0)

Get the "available at" UNIX timestamp.

Parameters

DateTimeInterface|DateInterval|int $delay

Return Value

int

protected DateTimeInterface|int parseDateInterval(DateTimeInterface|DateInterval|int $delay)

If the given value is an interval, convert it to a DateTime instance.

Parameters

DateTimeInterface|DateInterval|int $delay

Return Value

DateTimeInterface|int

protected int currentTime()

Get the current system time as a UNIX timestamp.

Return Value

int

void __construct(ArrayStore $store, string $name, int $seconds, string|null $owner = null)

Create a new lock instance.

Parameters

ArrayStore $store
string $name
int $seconds
string|null $owner

Return Value

void

bool acquire()

Attempt to acquire the lock.

Return Value

bool

bool release()

Release the lock.

Return Value

bool

protected string getCurrentOwner()

Returns the owner value written into the driver for this lock.

Return Value

string

mixed get(callable|null $callback = null)

Attempt to acquire the lock.

Parameters

callable|null $callback

Return Value

mixed

mixed block(int $seconds, callable|null $callback = null)

Attempt to acquire the lock for the given number of seconds.

Parameters

int $seconds
callable|null $callback

Return Value

mixed

Exceptions

LockTimeoutException

string owner()

Returns the current owner of the lock.

Return Value

string

bool isOwnedByCurrentProcess()

Determines whether this lock is allowed to release the lock in the driver.

Return Value

bool

$this betweenBlockedAttemptsSleepFor(int $milliseconds)

Specify the number of milliseconds to sleep in between blocked lock acquisition attempts.

Parameters

int $milliseconds

Return Value

$this

protected bool exists()

Determine if the current lock exists.

Return Value

bool

void forceRelease()

Releases this lock in disregard of ownership.

Return Value

void