2016-12-29 21:09:49 +01:00
|
|
|
<?php
|
2016-08-16 06:46:26 +02:00
|
|
|
|
2016-05-24 05:48:28 +02:00
|
|
|
namespace Amp;
|
2016-05-23 07:44:35 +02:00
|
|
|
|
2016-06-01 19:18:11 +02:00
|
|
|
/**
|
2016-11-14 20:59:21 +01:00
|
|
|
* Creates a promise that resolves itself with a given value after a number of milliseconds.
|
2016-06-01 19:18:11 +02:00
|
|
|
*/
|
2017-04-28 14:42:02 +02:00
|
|
|
final class Delayed implements Promise {
|
2016-05-23 07:44:35 +02:00
|
|
|
use Internal\Placeholder;
|
|
|
|
|
2017-01-08 08:15:57 +01:00
|
|
|
/** @var string Event loop watcher identifier. */
|
|
|
|
private $watcher;
|
|
|
|
|
2016-05-23 07:44:35 +02:00
|
|
|
/**
|
2017-03-10 21:58:46 +01:00
|
|
|
* @param int $time Milliseconds before succeeding the promise.
|
2016-11-14 20:59:21 +01:00
|
|
|
* @param mixed $value Succeed the promise with this value.
|
2016-05-23 07:44:35 +02:00
|
|
|
*/
|
2016-08-11 21:35:58 +02:00
|
|
|
public function __construct(int $time, $value = null) {
|
2017-01-08 08:15:57 +01:00
|
|
|
$this->watcher = Loop::delay($time, function () use ($value) {
|
2016-05-23 07:44:35 +02:00
|
|
|
$this->resolve($value);
|
|
|
|
});
|
|
|
|
}
|
2017-01-08 08:15:57 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* References the internal watcher in the event loop, keeping the loop running while this promise is pending.
|
|
|
|
*/
|
|
|
|
public function reference() {
|
|
|
|
Loop::reference($this->watcher);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unreferences the internal watcher in the event loop, allowing the loop to stop while this promise is pending if
|
|
|
|
* no other events are pending in the loop.
|
|
|
|
*/
|
|
|
|
public function unreference() {
|
|
|
|
Loop::unreference($this->watcher);
|
|
|
|
}
|
2016-05-23 07:44:35 +02:00
|
|
|
}
|