whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
amphp
/
sync
/
src
/
Upload File:
files >> /home/kckglobal/www/portal/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); } }
Copyright ©2021 || Defacer Indonesia