public DatabaseLockBackend::release($name)
Releases the given lock.
string $name:
Overrides LockBackendInterface::release
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