mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 04:46:04 +03:00
65ef159ddc
Also replace \Error with \Throwable
62 lines
1.2 KiB
PHP
62 lines
1.2 KiB
PHP
<?php
|
|
namespace GraphQL;
|
|
|
|
use GraphQL\Executor\Promise\Adapter\SyncPromise;
|
|
|
|
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);
|
|
}
|
|
|
|
private function run()
|
|
{
|
|
try {
|
|
$cb = $this->callback;
|
|
$this->promise->resolve($cb());
|
|
} catch (\Exception $e) {
|
|
$this->promise->reject($e);
|
|
} catch (\Throwable $e) {
|
|
$this->promise->reject($e);
|
|
}
|
|
}
|
|
}
|