MemcachedLock
class MemcachedLock extends Lock implements 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 Memcached | $memcached | The Memcached instance. |
Methods
Get the number of seconds until the given DateTime.
If the given value is an interval, convert it to a DateTime instance.
Create a new lock instance.
Attempt to acquire the lock.
Attempt to acquire the lock for the given number of seconds.
Release the lock.
Details
protected int
secondsUntil(DateTimeInterface|DateInterval|int $delay)
Get the number of seconds until the given DateTime.
protected int
availableAt(DateTimeInterface|DateInterval|int $delay = 0)
Get the "available at" UNIX timestamp.
protected DateTimeInterface|int
parseDateInterval(DateTimeInterface|DateInterval|int $delay)
If the given value is an interval, convert it to a DateTime instance.
protected int
currentTime()
Get the current system time as a UNIX timestamp.
void
__construct(Memcached $memcached, string $name, int $seconds)
Create a new lock instance.
bool
acquire()
Attempt to acquire the lock.
in
Lock at line 52
bool
get(callable|null $callback = null)
Attempt to acquire the lock.
in
Lock at line 73
bool
block(int $seconds, callable|null $callback = null)
Attempt to acquire the lock for the given number of seconds.
void
release()
Release the lock.