1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-03 18:17:52 +01:00
parallel/lib/Sync/Synchronizable.php
Aaron Piotrowski da84a772cf Port to Amp
2016-08-18 11:04:48 -05:00

26 lines
869 B
PHP

<?php
namespace Amp\Concurrent\Sync;
use Interop\Async\Awaitable;
/**
* An object that can be synchronized for exclusive access across contexts.
*/
interface Synchronizable
{
/**
* Asynchronously invokes a callback while maintaining an exclusive lock on the object.
*
* The arguments passed to the callback depend on the implementing object. If the callback throws an exception,
* the lock on the object will be immediately released.
*
* @param callable<(mixed ...$args): \Generator|mixed> $callback The synchronized callback to invoke.
* The callback may be a regular function or a coroutine.
*
* @return \Interop\Async\Awaitable<mixed> Resolves with the return value of $callback or fails if $callback
* throws an exception.
*/
public function synchronized(callable $callback): Awaitable;
}