1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 12:35:02 +01:00
amp/lib/Pause.php
2016-05-23 22:48:28 -05:00

22 lines
465 B
PHP

<?php
namespace Amp;
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);
});
}
}