public function createSemaphore(string
$resource, int
$limit, int
$weight = 1, ?float
$ttlInSecond = 300.0, bool
$autoRelease = true
): SemaphoreInterface
{ return $this->
createSemaphoreFromKey(new Key($resource,
$limit,
$weight),
$ttlInSecond,
$autoRelease);
} /**
* @param float|null $ttlInSecond Maximum expected semaphore duration in seconds
* @param bool $autoRelease Whether to automatically release the semaphore or not when the semaphore instance is destroyed
*/
public function createSemaphoreFromKey(Key
$key, ?float
$ttlInSecond = 300.0, bool
$autoRelease = true
): SemaphoreInterface
{ $semaphore =
new Semaphore($key,
$this->store,
$ttlInSecond,
$autoRelease);
if ($this->logger
) { $semaphore->
setLogger($this->logger
);
} return $semaphore;
}}