1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-04 02:27:55 +01:00
parallel/src/Sync/SemaphoreInterface.php

34 lines
997 B
PHP
Raw Normal View History

<?php
namespace Icicle\Concurrent\Sync;
/**
* A non-blocking counting semaphore.
*
* Objects that implement this interface should guarantee that all operations
2015-08-31 19:26:11 +02:00
* are atomic. Implementations do not have to guarantee that acquiring a lock
* is first-come, first serve.
*/
interface SemaphoreInterface extends \Countable
{
/**
* Gets the number of currently available locks.
*
* @return int The number of available locks.
*/
public function count();
/**
* @coroutine
*
* Acquires a lock from the semaphore asynchronously.
*
* If there are one or more locks available, this function resolve imsmediately with a lock and the lock count is
* decreased. If no locks are available, the semaphore waits asynchronously for a lock to become available.
*
* @return \Generator Resolves with a lock object when the acquire is successful.
*
* @resolve \Icicle\Concurrent\Sync\Lock
*/
public function acquire();
}