public function DatabaseLockBackend::release

public DatabaseLockBackend::release($name)

Releases the given lock.

Parameters

string $name:

Overrides LockBackendInterface::release

File

core/lib/Drupal/Core/Lock/DatabaseLockBackend.php, line 138

Class

DatabaseLockBackend
Defines the database lock backend. This is the default backend in Drupal.

Namespace

Drupal\Core\Lock

Code

public function release($name) {
  unset($this->locks[$name]);
  try {
    $this->database->delete('semaphore')
      ->condition('name', $name)
      ->condition('value', $this->getLockId())
      ->execute();
  }
  catch (\Exception $e) {
    $this->catchException($e);
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Lock!DatabaseLockBackend.php/function/DatabaseLockBackend::release/8.1.x