The acquire
method acquires a lock only if the lock is not already acquired.
true if the lock is already acquired otherwise false is returned.
The acquireBlocking
method acquires a lock only if the lock is not already acquired.
If the lock is acquired, it retries every settings.interval
until settings.time
is reached.
true if the lock is already acquired otherwise false is returned.
The acquireBlockingOrFail
method acquires a lock only if the lock is not already acquired.
If the lock is acquired, it retries every settings.interval
until settings.time
is reached.
Throws an error if not lock cannot be acquired after the given settings.time
.
Optional
settings: AquireBlockingSettingsThe acquireOrFail
method acquires a lock only if the lock is not already acquired.
Throws an error if already acquired.
The forceRelease
method releases a lock regardless of the owner.
The getOwner
method return the current owner.
The getRemainingTime
return the reaming time as TimeSpan
.
null if the key doesnt exist, key has no expiration and key has expired.
The isExpired
method returns true if the expired otherwise false is returned.
The isLocked
method returns true if the locked otherwise false is returned.
The refresh
method updates the TTL of the lock if owned by the same owner.
true if the lock is refreshed occurs otherwise false is returned.
The refreshOrFail
method updates the TTL of the lock if owned by the same owner.
Throws an error if a different owner attempts to refresh the lock.
Optional
ttl: TimeSpanThe release
method releases a lock if owned by the same owner.
true if the lock is released otherwise false is returned.
The releaseOrFail
method releases a lock if owned by the same owner.
Throws an error if a different owner attempts to release the lock.
The run
method wraps an Invokable
or LazyPromise
with the acquire
and release
method.
The runBlocking
method wraps an Invokable
or LazyPromise
with the acquireBlocking
and release
method.
Optional
settings: AquireBlockingSettingsThe runBlockingOrFail
method wraps an Invokable
or LazyPromise
with the acquireBlockingOrFail
and release
method.
Optional
settings: AquireBlockingSettingsThe runOrFail
method wraps an Invokable
or LazyPromise
with the acquireOrFail
and release
method.
IMPORTANT: This class is not intended to be instantiated directly, instead it should be created by the
LockProvider
class instance.