mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-25 06:16:05 +03:00
62 lines
1.2 KiB
PHP
62 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace GraphQL;
|
|
|
|
use Exception;
|
|
use GraphQL\Executor\Promise\Adapter\SyncPromise;
|
|
use SplQueue;
|
|
use Throwable;
|
|
|
|
class Deferred
|
|
{
|
|
/** @var SplQueue */
|
|
private static $queue;
|
|
|
|
/** @var callable */
|
|
private $callback;
|
|
|
|
/** @var SyncPromise */
|
|
public $promise;
|
|
|
|
public static function getQueue()
|
|
{
|
|
return self::$queue ?: self::$queue = new SplQueue();
|
|
}
|
|
|
|
public static function runQueue()
|
|
{
|
|
$q = self::$queue;
|
|
while ($q && ! $q->isEmpty()) {
|
|
/** @var self $dfd */
|
|
$dfd = $q->dequeue();
|
|
$dfd->run();
|
|
}
|
|
}
|
|
|
|
public function __construct(callable $callback)
|
|
{
|
|
$this->callback = $callback;
|
|
$this->promise = new SyncPromise();
|
|
self::getQueue()->enqueue($this);
|
|
}
|
|
|
|
public function then($onFulfilled = null, $onRejected = null)
|
|
{
|
|
return $this->promise->then($onFulfilled, $onRejected);
|
|
}
|
|
|
|
public function run() : void
|
|
{
|
|
try {
|
|
$cb = $this->callback;
|
|
$this->promise->resolve($cb());
|
|
} catch (Exception $e) {
|
|
$this->promise->reject($e);
|
|
} catch (Throwable $e) {
|
|
$this->promise->reject($e);
|
|
}
|
|
}
|
|
}
|