function PersistentDatabaseLockBackend::acquire
Acquires a lock.
Parameters
string $name: Lock name. Limit of name's length is 255 characters.
float $timeout: (optional) Lock lifetime in seconds. Defaults to 30.0.
Return value
bool
Overrides LockBackendInterface::acquire
File
-
core/
lib/ Drupal/ Core/ ProxyClass/ Lock/ PersistentDatabaseLockBackend.php, line 73
Class
- PersistentDatabaseLockBackend
- Provides a proxy class for \Drupal\Core\Lock\PersistentDatabaseLockBackend.
Namespace
Drupal\Core\ProxyClass\LockCode
public function acquire($name, $timeout = 30.0) {
return $this->lazyLoadItself()
->acquire($name, $timeout);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.