Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/rector/rector/vendor/react/dns/src/Query/
Upload File :
Current File : //home/rtorresani/www/vendor/rector/rector/vendor/react/dns/src/Query/TimeoutExecutor.php

<?php

namespace RectorPrefix202304\React\Dns\Query;

use RectorPrefix202304\React\EventLoop\Loop;
use RectorPrefix202304\React\EventLoop\LoopInterface;
use RectorPrefix202304\React\Promise\Timer;
final class TimeoutExecutor implements ExecutorInterface
{
    private $executor;
    private $loop;
    private $timeout;
    public function __construct(ExecutorInterface $executor, $timeout, LoopInterface $loop = null)
    {
        $this->executor = $executor;
        $this->loop = $loop ?: Loop::get();
        $this->timeout = $timeout;
    }
    public function query(Query $query)
    {
        return Timer\timeout($this->executor->query($query), $this->timeout, $this->loop)->then(null, function ($e) use($query) {
            if ($e instanceof Timer\TimeoutException) {
                $e = new TimeoutException(\sprintf("DNS query for %s timed out", $query->describe()), 0, $e);
            }
            throw $e;
        });
    }
}