1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/lib/Deferred.php
2017-12-16 00:00:56 -06:00

48 lines
1.1 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 \Amp\Promise */
private $promise;
public function __construct() {
$this->promise = new class implements Promise {
use Internal\Placeholder {
resolve as public;
fail as public;
}
};
}
/**
* @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->promise->resolve($value);
}
/**
* Fails the promise the the given reason.
*
* @param \Throwable $reason
*/
public function fail(\Throwable $reason) {
$this->promise->fail($reason);
}
}