2016-05-21 16:44:52 +02:00
|
|
|
<?php
|
|
|
|
|
2016-05-24 05:48:28 +02:00
|
|
|
namespace Amp;
|
2016-05-21 16:44:52 +02:00
|
|
|
|
|
|
|
use Interop\Async\Loop;
|
|
|
|
use Interop\Async\Awaitable;
|
|
|
|
|
|
|
|
class Failure implements Awaitable {
|
|
|
|
/**
|
|
|
|
* @var \Exception|\Throwable $exception
|
|
|
|
*/
|
|
|
|
private $exception;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \Throwable|\Exception $exception Rejection reason.
|
|
|
|
*
|
|
|
|
* @throws \InvalidArgumentException If a non-exception is given.
|
|
|
|
*/
|
2016-05-21 19:07:08 +02:00
|
|
|
public function __construct($exception) {
|
2016-05-21 16:44:52 +02:00
|
|
|
if (!$exception instanceof \Throwable && !$exception instanceof \Exception) {
|
2016-05-21 19:12:55 +02:00
|
|
|
throw new \InvalidArgumentException("Failure reason must be an exception");
|
2016-05-21 16:44:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->exception = $exception;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function when(callable $onResolved) {
|
|
|
|
try {
|
|
|
|
$onResolved($this->exception, null);
|
|
|
|
} catch (\Throwable $exception) {
|
2016-05-22 20:43:37 +02:00
|
|
|
Loop::defer(static function () use ($exception) {
|
2016-05-21 16:44:52 +02:00
|
|
|
throw $exception;
|
2016-05-22 20:43:37 +02:00
|
|
|
});
|
2016-05-21 16:44:52 +02:00
|
|
|
} catch (\Exception $exception) {
|
2016-05-22 20:43:37 +02:00
|
|
|
Loop::defer(static function () use ($exception) {
|
2016-05-21 16:44:52 +02:00
|
|
|
throw $exception;
|
2016-05-22 20:43:37 +02:00
|
|
|
});
|
2016-05-21 16:44:52 +02:00
|
|
|
}
|
|
|
|
}
|
2016-05-22 20:43:37 +02:00
|
|
|
}
|