1
0
mirror of https://github.com/danog/amp.git synced 2024-12-11 08:59:46 +01:00
amp/lib/Failure.php
2020-10-30 10:36:19 -05:00

38 lines
792 B
PHP

<?php
namespace Amp;
/**
* Creates a failed promise using the given exception.
*
* @template-covariant TValue
* @template-implements Promise<TValue>
*/
final class Failure implements Promise
{
private \Throwable $exception;
/**
* @param \Throwable $exception Rejection reason.
*/
public function __construct(\Throwable $exception)
{
$this->exception = $exception;
}
/**
* {@inheritdoc}
*/
public function onResolve(callable $onResolved): void
{
Loop::defer(function () use ($onResolved): void {
/** @var mixed $result */
$result = $onResolved($this->exception, null);
if ($result instanceof Promise) {
Promise\rethrow($result);
}
});
}
}