Initial Commit
This commit is contained in:
21
dependencies/amphp/sync/src/StaticKeyMutex.php
vendored
Normal file
21
dependencies/amphp/sync/src/StaticKeyMutex.php
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace WP_Ultimo\Dependencies\Amp\Sync;
|
||||
|
||||
use WP_Ultimo\Dependencies\Amp\Promise;
|
||||
final class StaticKeyMutex implements Mutex
|
||||
{
|
||||
/** @var KeyedMutex */
|
||||
private $mutex;
|
||||
/** @var string */
|
||||
private $key;
|
||||
public function __construct(KeyedMutex $mutex, string $key)
|
||||
{
|
||||
$this->mutex = $mutex;
|
||||
$this->key = $key;
|
||||
}
|
||||
public function acquire() : Promise
|
||||
{
|
||||
return $this->mutex->acquire($this->key);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user