2015-03-18 14:04:18 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Amp;
|
|
|
|
|
2015-05-19 14:10:53 -04:00
|
|
|
class Pause implements Promise {
|
|
|
|
use Placeholder;
|
|
|
|
|
2015-07-20 22:24:51 -04:00
|
|
|
/**
|
|
|
|
* @param int $timeout The timeout in milliseconds after which the promise will resolve
|
|
|
|
* @param \Amp\Reactor $reactor An optional reactor instance (default reactor used if not specified)
|
|
|
|
* @throws \DomainException If
|
|
|
|
*/
|
|
|
|
public function __construct($timeout, Reactor $reactor = null) {
|
|
|
|
$timeout = (int) $timeout;
|
|
|
|
if ($timeout < 1) {
|
|
|
|
throw new \DomainException(
|
|
|
|
"Pause timeout must be greater than or equal to 1 millisecond"
|
|
|
|
);
|
2015-03-18 14:04:18 -04:00
|
|
|
}
|
2015-05-20 15:18:30 -04:00
|
|
|
$reactor = $reactor ?: reactor();
|
2015-07-22 13:54:29 -04:00
|
|
|
$reactor->once(function () {
|
2015-07-20 22:24:51 -04:00
|
|
|
$this->resolve();
|
|
|
|
}, $timeout);
|
2015-03-18 14:04:18 -04:00
|
|
|
}
|
|
|
|
}
|