1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 12:35:02 +01:00
amp/lib/Deferred.php

80 lines
2.1 KiB
PHP
Raw Normal View History

2016-05-21 16:44:52 +02:00
<?php
2016-05-24 05:48:28 +02:00
namespace Amp;
2016-05-21 16:44:52 +02:00
use Interop\Async\Awaitable;
2016-07-12 18:20:06 +02:00
// @codeCoverageIgnoreStart
2016-05-21 16:44:52 +02:00
try {
if (@assert(false)) {
production: // PHP 7 production environment (zend.assertions=0)
final class Deferred implements Awaitable {
use Internal\Placeholder {
resolve as public;
fail as public;
}
/**
* @return \Interop\Async\Awaitable
*/
public function getAwaitable() {
return $this;
}
}
} else {
development: // PHP 7 development (zend.assertions=1) or PHP 5.x
final class Deferred {
/**
* @var \Interop\Async\Awaitable
*/
private $awaitable;
/**
* @var callable
*/
private $resolve;
/**
* @var callable
*/
private $fail;
public function __construct() {
2016-05-22 20:24:39 +02:00
$this->awaitable = new Internal\PrivateAwaitable(function (callable $resolve, callable $fail) {
2016-05-21 16:44:52 +02:00
$this->resolve = $resolve;
$this->fail = $fail;
});
}
/**
* @return \Interop\Async\Awaitable
*/
public function getAwaitable() {
return $this->awaitable;
}
/**
* Fulfill the awaitable with the given value.
*
* @param mixed $value
*/
public function resolve($value = null) {
$resolve = $this->resolve;
$resolve($value);
}
/**
* Fails the awaitable the the given reason.
*
* @param \Throwable|\Exception $reason
*/
public function fail($reason) {
$fail = $this->fail;
$fail($reason);
}
}
}
} catch (\AssertionError $exception) {
goto development; // zend.assertions=1 and assert.exception=1, use development definition.
2016-07-12 18:20:06 +02:00
} // @codeCoverageIgnoreEnd