friendica/src/Core/Lock/ILockDriver.php

47 lines
840 B
PHP
Raw Normal View History

<?php
namespace Friendica\Core\Lock;
/**
* Lock Driver Interface
*
* @author Philipp Holzer <admin@philipp.info>
*/
interface ILockDriver
{
/**
2018-07-05 07:59:56 +02:00
* Checks, if a key is currently locked to a or my process
*
* @param string $key The name of the lock
* @return bool
*/
public function isLocked($key);
/**
*
2018-07-05 07:59:56 +02:00
* Acquires a lock for a given name
*
* @param string $key The Name of the lock
* @param integer $timeout Seconds until we give up
*
* @return boolean Was the lock successful?
*/
public function acquireLock($key, $timeout = 120);
/**
2018-07-05 07:59:56 +02:00
* Releases a lock if it was set by us
*
* @param string $key The Name of the lock
*
* @return void
*/
public function releaseLock($key);
/**
2018-07-05 07:59:56 +02:00
* Releases all lock that were set by us
*
* @return void
*/
public function releaseAll();
2018-06-26 23:44:30 +02:00
}