2016-12-29 14:09:49 -06:00
|
|
|
<?php
|
2016-08-15 23:46:26 -05:00
|
|
|
|
2016-05-23 22:48:28 -05:00
|
|
|
namespace Amp;
|
2016-05-23 00:44:35 -05:00
|
|
|
|
2016-06-01 12:18:11 -05:00
|
|
|
/**
|
2016-11-14 13:59:21 -06:00
|
|
|
* Creates a promise that resolves itself with a given value after a number of milliseconds.
|
2020-03-28 13:52:48 +01:00
|
|
|
*
|
|
|
|
* @template-covariant TReturn
|
|
|
|
* @template-implements Promise<TReturn>
|
2016-06-01 12:18:11 -05:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
final class Delayed implements Promise
|
|
|
|
{
|
2016-05-23 00:44:35 -05:00
|
|
|
use Internal\Placeholder;
|
|
|
|
|
2020-04-20 12:01:50 -05:00
|
|
|
/** @var string|null Event loop watcher identifier. */
|
2020-09-24 11:52:22 -05:00
|
|
|
private ?string $watcher;
|
2017-01-08 01:15:57 -06:00
|
|
|
|
2016-05-23 00:44:35 -05:00
|
|
|
/**
|
2020-03-28 13:52:48 +01:00
|
|
|
* @param int $time Milliseconds before succeeding the promise.
|
|
|
|
* @param TReturn $value Succeed the promise with this value.
|
2016-05-23 00:44:35 -05:00
|
|
|
*/
|
2020-09-24 11:52:22 -05:00
|
|
|
public function __construct(int $time, mixed $value = null)
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2020-09-24 11:52:22 -05:00
|
|
|
$this->watcher = Loop::delay($time, function () use ($value): void {
|
2020-04-20 12:01:50 -05:00
|
|
|
$this->watcher = null;
|
2016-05-23 00:44:35 -05:00
|
|
|
$this->resolve($value);
|
|
|
|
});
|
|
|
|
}
|
2017-01-08 01:15:57 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* References the internal watcher in the event loop, keeping the loop running while this promise is pending.
|
2020-03-28 12:23:46 +01:00
|
|
|
*
|
2020-04-23 23:43:48 -05:00
|
|
|
* @return self
|
2017-01-08 01:15:57 -06:00
|
|
|
*/
|
2020-04-23 23:43:48 -05:00
|
|
|
public function reference(): self
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2020-04-20 12:01:50 -05:00
|
|
|
if ($this->watcher !== null) {
|
|
|
|
Loop::reference($this->watcher);
|
|
|
|
}
|
2020-04-23 23:43:48 -05:00
|
|
|
|
|
|
|
return $this;
|
2017-01-08 01:15:57 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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-03-28 12:23:46 +01:00
|
|
|
*
|
2020-04-23 23:43:48 -05:00
|
|
|
* @return self
|
2017-01-08 01:15:57 -06:00
|
|
|
*/
|
2020-04-23 23:43:48 -05:00
|
|
|
public function unreference(): self
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2020-04-20 12:01:50 -05:00
|
|
|
if ($this->watcher !== null) {
|
|
|
|
Loop::unreference($this->watcher);
|
|
|
|
}
|
2020-04-23 23:43:48 -05:00
|
|
|
|
|
|
|
return $this;
|
2017-01-08 01:15:57 -06:00
|
|
|
}
|
2016-05-23 00:44:35 -05:00
|
|
|
}
|