mirror of
https://github.com/danog/amp.git
synced 2024-11-30 04:29:08 +01:00
45 lines
1001 B
PHP
45 lines
1001 B
PHP
<?php
|
|
|
|
namespace Amp;
|
|
|
|
use Amp\Promise\ErrorHandler;
|
|
|
|
/**
|
|
* 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) {
|
|
ErrorHandler::notify($exception);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function listen(callable $onNext) {
|
|
}
|
|
}
|