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
|
|
|
|
2017-01-07 13:47:45 +01:00
|
|
|
use AsyncInterop\{ Loop, Promise };
|
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.
|
2016-06-01 12:18:11 -05:00
|
|
|
*/
|
2016-11-14 13:59:21 -06:00
|
|
|
final class Pause implements Promise {
|
2016-05-23 00:44:35 -05:00
|
|
|
use Internal\Placeholder;
|
|
|
|
|
|
|
|
/**
|
2016-11-14 13:59:21 -06:00
|
|
|
* @param int $time Milliseconds before succeeding the promise.
|
|
|
|
* @param mixed $value Succeed the promise with this value.
|
2016-05-23 00:44:35 -05:00
|
|
|
*/
|
2016-08-11 14:35:58 -05:00
|
|
|
public function __construct(int $time, $value = null) {
|
2016-05-23 00:44:35 -05:00
|
|
|
Loop::delay($time, function () use ($value) {
|
|
|
|
$this->resolve($value);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|