mirror of
https://github.com/danog/amp.git
synced 2024-11-27 12:35:02 +01:00
22 lines
465 B
PHP
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);
|
|
});
|
|
}
|
|
}
|