1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/lib/Pause.php
2016-05-23 00:44:35 -05:00

22 lines
475 B
PHP

<?php
namespace Amp\Awaitable;
use Interop\Async\Awaitable;
use Interop\Async\Loop;
class Pause implements Awaitable {
use Internal\Placeholder;
/**
* @param int $time Milliseconds before succeeding the awaitable.
* @param mixed $value Succeed the awaitable with this value.
*/
public function __construct($time, $value = null)
{
Loop::delay($time, function () use ($value) {
$this->resolve($value);
});
}
}