ok
Direktori : /home2/selectio/www/fms-worksuite/vendor/amphp/sync/src/ |
Current File : /home2/selectio/www/fms-worksuite/vendor/amphp/sync/src/StaticKeyMutex.php |
<?php namespace Amp\Sync; use 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); } }