function DatabaseLockBackend::__construct

Constructs a new DatabaseLockBackend.

Parameters

\Drupal\Core\Database\Connection $database: The database connection.

1 method overrides DatabaseLockBackend::__construct()
PersistentDatabaseLockBackend::__construct in core/lib/Drupal/Core/Lock/PersistentDatabaseLockBackend.php
Constructs a new PersistentDatabaseLockBackend.

File

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

Class

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

Namespace

Drupal\Core\Lock

Code

public function __construct(Connection $database) {
  // __destruct() is causing problems with garbage collections, register a
  // shutdown function instead.
  drupal_register_shutdown_function([
    $this,
    'releaseAll',
  ]);
  $this->database = $database;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.