You are here

public static function UltimateCronLockMemcache::persist in Ultimate Cron 7.2

Dont release lock on shutdown.

Parameters

string $lock_id: The lock id to persist.

File

./ultimate_cron.memcache-lock.inc, line 34
A memcached-mediated implementation of a locking mechanism.

Class

UltimateCronLockMemcache
Class for handling lock functions.

Code

public static function persist($lock_id) {
  if (isset(self::$locks)) {
    unset(self::$locks[$lock_id]);
  }
}