1
0
mirror of https://github.com/danog/amp.git synced 2025-01-22 13:21:16 +01:00
amp/lib/Success.php
Aaron Piotrowski 754a29e86c Remove promise error handler
Exceptions thrown from when callbacks are now forwarded directly to the loop error handler.
2017-03-10 15:32:58 -06:00

45 lines
1.0 KiB
PHP

<?php
namespace Amp;
/**
* Creates a successful stream (which is also a promise) using the given value (which can be any value except another
* object implementing \Amp\Promise).
*/
final class Success implements Stream {
/** @var mixed */
private $value;
/**
* @param mixed $value Anything other than an Promise object.
*
* @throws \Error If a promise is given as the value.
*/
public function __construct($value = null) {
if ($value instanceof Promise) {
throw new \Error("Cannot use a promise as success value");
}
$this->value = $value;
}
/**
* {@inheritdoc}
*/
public function when(callable $onResolved) {
try {
$onResolved(null, $this->value);
} catch (\Throwable $exception) {
Loop::defer(function () use ($exception) {
throw $exception;
});
}
}
/**
* {@inheritdoc}
*/
public function listen(callable $onNext) {
}
}