1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/lib/Delayed.php
Niklas Keller 1286087c06 Rename Pause to Delayed
Pause doesn't cover the delayed value use case.
2017-05-02 07:02:02 +02:00

39 lines
1.1 KiB
PHP

<?php
namespace Amp;
/**
* Creates a promise that resolves itself with a given value after a number of milliseconds.
*/
final class Delayed implements Promise {
use Internal\Placeholder;
/** @var string Event loop watcher identifier. */
private $watcher;
/**
* @param int $time Milliseconds before succeeding the promise.
* @param mixed $value Succeed the promise with this value.
*/
public function __construct(int $time, $value = null) {
$this->watcher = Loop::delay($time, function () use ($value) {
$this->resolve($value);
});
}
/**
* 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);
}
}