blob: d4eba2efffc01413be0d0e7d610cf90e0d761241 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
namespace React\Socket;
use React\EventLoop\LoopInterface;
use React\Promise\Timer;
final class TimeoutConnector implements ConnectorInterface
{
private $connector;
private $timeout;
private $loop;
public function __construct(ConnectorInterface $connector, $timeout, LoopInterface $loop)
{
$this->connector = $connector;
$this->timeout = $timeout;
$this->loop = $loop;
}
public function connect($uri)
{
return Timer\timeout($this->connector->connect($uri), $this->timeout, $this->loop);
}
}
|