1
0
mirror of https://github.com/danog/amp.git synced 2025-01-23 05:41:25 +01:00
amp/lib/Internal/ResolutionQueue.php

57 lines
1.3 KiB
PHP
Raw Normal View History

<?php
2016-08-15 23:46:26 -05:00
2016-05-23 22:48:28 -05:00
namespace Amp\Internal;
2016-05-21 09:44:52 -05:00
use Amp\Loop;
2016-05-21 09:44:52 -05:00
2016-06-01 12:18:11 -05:00
/**
2016-11-14 13:59:21 -06:00
* Stores a set of functions to be invoked when a promise is resolved.
2016-06-01 12:18:11 -05:00
*
* @internal
*/
class ResolutionQueue {
2016-08-17 22:25:54 -05:00
/** @var callable[] */
2016-05-21 09:44:52 -05:00
private $queue = [];
/**
* @param callable|null $callback Initial callback to add to queue.
*/
public function __construct(callable $callback = null) {
if (null !== $callback) {
$this->push($callback);
}
}
/**
* Unrolls instances of self to avoid blowing up the call stack on resolution.
*
* @param callable $callback
*/
public function push(callable $callback) {
if ($callback instanceof self) {
$this->queue = \array_merge($this->queue, $callback->queue);
return;
}
$this->queue[] = $callback;
}
2016-05-21 09:44:52 -05:00
/**
* Calls each callback in the queue, passing the provided values to the function.
*
2016-08-11 14:35:58 -05:00
* @param \Throwable|null $exception
* @param mixed $value
2016-05-21 09:44:52 -05:00
*/
public function __invoke($exception, $value) {
2016-05-21 09:44:52 -05:00
foreach ($this->queue as $callback) {
try {
$callback($exception, $value);
} catch (\Throwable $exception) {
Loop::defer(function () use ($exception) {
throw $exception;
});
2016-05-21 09:44:52 -05:00
}
}
}
}