1
0
mirror of https://github.com/danog/amp.git synced 2024-11-26 20:15:00 +01:00
amp/lib/Deferred.php
2018-06-18 20:00:01 +02:00

58 lines
1.3 KiB
PHP

<?php
namespace Amp;
/**
* Deferred is a container for a promise that is resolved using the resolve() and fail() methods of this object.
* The contained promise may be accessed using the promise() method. This object should not be part of a public
* API, but used internally to create and resolve a promise.
*/
final class Deferred
{
/** @var object Has public resolve and fail methods. */
private $resolver;
/** @var \Amp\Promise Hides placeholder methods */
private $promise;
public function __construct()
{
$this->resolver = new class implements Promise {
use Internal\Placeholder {
resolve as public;
fail as public;
}
};
$this->promise = new Internal\PrivatePromise($this->resolver);
}
/**
* @return \Amp\Promise
*/
public function promise(): Promise
{
return $this->promise;
}
/**
* Fulfill the promise with the given value.
*
* @param mixed $value
*/
public function resolve($value = null)
{
$this->resolver->resolve($value);
}
/**
* Fails the promise the the given reason.
*
* @param \Throwable $reason
*/
public function fail(\Throwable $reason)
{
$this->resolver->fail($reason);
}
}