1
0
mirror of https://github.com/danog/amp.git synced 2024-12-02 17:37:50 +01:00
amp/lib/Delayed.php

59 lines
1.4 KiB
PHP
Raw Normal View History

<?php
2016-08-16 06:46:26 +02:00
2016-05-24 05:48:28 +02:00
namespace Amp;
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.
*
* @template-covariant TReturn
* @template-implements Promise<TReturn>
2016-06-01 19:18:11 +02:00
*/
2018-06-18 20:00:01 +02:00
final class Delayed implements Promise
{
use Internal\Placeholder;
/** @var string|null Event loop watcher identifier. */
private $watcher;
/**
* @param int $time Milliseconds before succeeding the promise.
* @param TReturn $value Succeed the promise with this value.
*/
2018-06-18 20:00:01 +02:00
public function __construct(int $time, $value = null)
{
$this->watcher = Loop::delay($time, function () use ($value) {
$this->watcher = null;
$this->resolve($value);
});
}
/**
* References the internal watcher in the event loop, keeping the loop running while this promise is pending.
*
2020-04-24 06:43:48 +02:00
* @return self
*/
2020-04-24 06:43:48 +02:00
public function reference(): self
2018-06-18 20:00:01 +02:00
{
if ($this->watcher !== null) {
Loop::reference($this->watcher);
}
2020-04-24 06:43:48 +02:00
return $this;
}
/**
* 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.
*
2020-04-24 06:43:48 +02:00
* @return self
*/
2020-04-24 06:43:48 +02:00
public function unreference(): self
2018-06-18 20:00:01 +02:00
{
if ($this->watcher !== null) {
Loop::unreference($this->watcher);
}
2020-04-24 06:43:48 +02:00
return $this;
}
}