Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

Differences Between: [Versions 310 and 401] [Versions 310 and 402] [Versions 310 and 403] [Versions 39 and 310]

Class representing a lock The methods available for a specific lock type are only known by it's factory.

Copyright: Damyon Wiese 2013
License: http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
File Size: 131 lines (5 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

lock:: (5 methods):
  __construct()
  get_key()
  extend()
  release()
  __destruct()


Class: lock  - X-Ref

Class representing a lock

The methods available for a specific lock type are only known by it's factory.

__construct($key, $factory)   X-Ref
Construct a lock containing the unique key required to release it.

param: mixed $key - The lock key. The type of this is up to the lock_factory being used.
param: lock_factory $factory - The factory that generated this lock.

get_key()   X-Ref
Return the unique key representing this lock.

return: string|int lock key.

extend($maxlifetime = 86400)   X-Ref
Extend the lifetime of this lock. Not supported by all factories.

param: int $maxlifetime - the new lifetime for the lock (in seconds).
return: bool

release()   X-Ref
Release this lock

return: bool

__destruct()   X-Ref
Print debugging if this lock falls out of scope before being released.