1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-04 10:38:30 +01:00
parallel/lib/Sync/Synchronizable.php
2017-03-16 17:03:59 -05:00

25 lines
841 B
PHP

<?php
namespace Amp\Parallel\Sync;
use Amp\Promise;
/**
* 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 \Amp\Promise<mixed> Resolves with the return value of $callback or fails if $callback
* throws an exception.
*/
public function synchronized(callable $callback): Promise;
}