Lock
abstract class Lock implements Lock (View source)
Traits
InteractsWithTime |
Properties
protected string | $name | The name of the lock. | |
protected int | $seconds | The number of seconds the lock should be maintained. |
Methods
int | secondsUntil(DateTimeInterface|DateInterval|int $delay) Get the number of seconds until the given DateTime. | from InteractsWithTime |
int | availableAt(DateTimeInterface|DateInterval|int $delay = 0) Get the "available at" UNIX timestamp. | from InteractsWithTime |
DateTimeInterface|int | parseDateInterval(DateTimeInterface|DateInterval|int $delay) If the given value is an interval, convert it to a DateTime instance. | from InteractsWithTime |
int | currentTime() Get the current system time as a UNIX timestamp. | from InteractsWithTime |
void | __construct(string $name, int $seconds) Create a new lock instance. | |
bool | acquire() Attempt to acquire the lock. | |
void | release() Release the lock. | |
bool | get(callable|null $callback = null) Attempt to acquire the lock. | |
bool | block(int $seconds, callable|null $callback = null) Attempt to acquire the lock for the given number of seconds. |
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(string $name, int $seconds)
Create a new lock instance.
abstract bool acquire()
Attempt to acquire the lock.
abstract void release()
Release the lock.
bool get(callable|null $callback = null)
Attempt to acquire the lock.
bool block(int $seconds, callable|null $callback = null)
Attempt to acquire the lock for the given number of seconds.
© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/5.7/Illuminate/Cache/Lock.html