php-ipc/src/Sem/Mutex.php

15 lines
210 B
PHP
Raw Normal View History

2018-04-15 14:41:46 +00:00
<?php
namespace NoccyLabs\Ipc\Sem;
use NoccyLabs\Ipc\Key\KeyInterface;
class Mutex extends Semaphore
{
public function __construct(KeyInterface $key)
{
parent::__construct($key, 1);
}
}