Created
February 7, 2016 10:10
-
-
Save ondrejmirtes/ffd1be5be4062493c50a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php declare(strict_types = 1); | |
class PromiseTimer | |
{ | |
/** @var \React\EventLoop\LoopInterface */ | |
private $loop; | |
public function __construct(\React\EventLoop\LoopInterface $loop) | |
{ | |
$this->loop = $loop; | |
} | |
public function wait(int $time): \React\Promise\PromiseInterface | |
{ | |
$deferred = new \React\Promise\Deferred(); | |
$this->loop->addTimer($time, function () use ($deferred) { | |
$deferred->resolve(); | |
}); | |
return $deferred->promise(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment