mirror of
https://github.com/danog/parallel.git
synced 2024-12-02 17:52:14 +01:00
25 lines
861 B
PHP
25 lines
861 B
PHP
<?php
|
|
|
|
namespace Amp\Parallel\Sync;
|
|
|
|
use Interop\Async\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 \Interop\Async\Promise<mixed> Resolves with the return value of $callback or fails if $callback
|
|
* throws an exception.
|
|
*/
|
|
public function synchronized(callable $callback): Promise;
|
|
}
|