public LockBackendInterface::acquire($name, $timeout = 30.0)
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
File
- core/lib/Drupal/Core/Lock/LockBackendInterface.php, line 76
Class
- LockBackendInterface
- Lock backend interface.
Namespace
Drupal\Core\Lock
Code
public function acquire($name, $timeout = 30.0);
Please login to continue.