1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/lib/Success.php

45 lines
1.0 KiB
PHP
Raw Normal View History

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 Success implements Awaitable {
/**
* @var mixed
*/
private $value;
/**
* @param mixed $value Anything other than an Awaitable object.
*
* @throws \InvalidArgumentException If an awaitable is given as the value.
*/
public function __construct($value)
{
if ($value instanceof Awaitable) {
2016-05-21 19:12:55 +02:00
throw new \InvalidArgumentException("Cannot use an awaitable as success value");
2016-05-21 16:44:52 +02:00
}
$this->value = $value;
}
/**
* {@inheritdoc}
*/
public function when(callable $onResolved) {
try {
$onResolved(null, $this->value);
} catch (\Throwable $exception) {
Loop::defer(static function () use ($exception) {
2016-05-21 16:44:52 +02:00
throw $exception;
});
2016-05-21 16:44:52 +02:00
} catch (\Exception $exception) {
Loop::defer(static function () use ($exception) {
2016-05-21 16:44:52 +02:00
throw $exception;
});
2016-05-21 16:44:52 +02:00
}
}
}