1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/lib/Pause.php
2016-11-14 13:59:21 -06:00

23 lines
577 B
PHP

<?php declare(strict_types = 1);
namespace Amp;
use Interop\Async\{ Loop, Promise };
/**
* Creates a promise that resolves itself with a given value after a number of milliseconds.
*/
final class Pause implements Promise {
use Internal\Placeholder;
/**
* @param int $time Milliseconds before succeeding the promise.
* @param mixed $value Succeed the promise with this value.
*/
public function __construct(int $time, $value = null) {
Loop::delay($time, function () use ($value) {
$this->resolve($value);
});
}
}