mirror of
https://github.com/danog/amp.git
synced 2024-11-30 04:29:08 +01:00
44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace Amp\Awaitable;
|
|
|
|
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) {
|
|
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 ($watcher, $exception) {
|
|
throw $exception;
|
|
}, $exception);
|
|
} catch (\Exception $exception) {
|
|
Loop::defer(static function ($watcher, $exception) {
|
|
throw $exception;
|
|
}, $exception);
|
|
}
|
|
}
|
|
} |