Readonly
durationReadonly
k8Readonly
leaseReadonly
lockReadonly
namespaceReadonly
renewalChecks if the lock is acquired. If the lock is acquired and not expired, it returns true; otherwise, false.
true if the lock is acquired and not expired; otherwise, false.
Checks if the lock is expired. If the lock is expired, it returns true; otherwise, false. This method does not verify if the lock is acquired by the current process.
true if the lock is expired; otherwise, false.
Releases the lock. If the lock is expired or held by the same process, it deletes the lock. If the lock is held by another process, then an exception is thrown.
Renews the lock. If the lock is expired or held by the same process, it creates or renews the lock. If the lock is held by another process, then an exception is thrown.
Attempts to acquire the lock, by calling the acquire method. If an exception is thrown, it is caught and false is returned. If the lock is successfully acquired, true is returned; otherwise, false is returned.
true if the lock is successfully acquired; otherwise, false.
Attempts to relock the lock, by calling the relock method. If an exception is thrown, it is caught and false is returned. If the lock is successfully released, true is returned; otherwise, false is returned.
true if the lock is successfully released; otherwise, false.
Attempts to renew the lock, by calling the renew method. If an exception is thrown, it is caught and false is returned. If the lock is successfully renewed, true is returned; otherwise, false is returned.
true if the lock is successfully renewed; otherwise, false.
Acquires the lock. If the lock is already acquired, it checks if the lock is expired or held by the same process. If the lock is expired, it creates a new lock. If the lock is held by the same process, it renews the lock. If the lock is held by another process, then an exception is thrown.