mirror of
https://github.com/danog/amp.git
synced 2024-11-27 04:24:42 +01:00
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Amp;
|
|
|
|
use Interop\Async\Loop;
|
|
use Interop\Async\Awaitable;
|
|
|
|
/**
|
|
* Creates a successful awaitable using the given value (which can be any value except another object implementing
|
|
* \Interop\Async\Awaitable).
|
|
*/
|
|
final 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 = null)
|
|
{
|
|
if ($value instanceof Awaitable) {
|
|
throw new \InvalidArgumentException("Cannot use an awaitable as success value");
|
|
}
|
|
|
|
$this->value = $value;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function when(callable $onResolved) {
|
|
try {
|
|
$onResolved(null, $this->value);
|
|
} catch (\Throwable $exception) {
|
|
Loop::defer(static function () use ($exception) {
|
|
throw $exception;
|
|
});
|
|
} catch (\Exception $exception) {
|
|
Loop::defer(static function () use ($exception) {
|
|
throw $exception;
|
|
});
|
|
}
|
|
}
|
|
}
|