php-ipc/src/Sem/Semaphore.php

25 lines
287 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 Semaphore
{
public function __construct(KeyInterface $key, int $max)
{
}
public function acquire(float $timeout)
{
}
public function release()
{
}
}