-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBunnyConnectionPool.php
73 lines (61 loc) · 1.86 KB
/
BunnyConnectionPool.php
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
declare(strict_types=1);
namespace Telephantast\BunnyTransport;
use Bunny\Async\Client;
use React\EventLoop\Loop;
use React\Promise\PromiseInterface;
use function React\Async\await;
/**
* @api
*/
final class BunnyConnectionPool
{
/**
* @var null|Client|PromiseInterface<Client>
*/
private null|Client|PromiseInterface $client = null;
public function __construct(
private readonly string $host = 'localhost',
private readonly int $port = 5672,
private readonly string $user = 'guest',
private readonly string $password = 'guest',
private readonly string $vhost = '/',
private readonly int $heartbeatSeconds = 60,
) {}
/**
* @psalm-suppress MissingThrowsDocblock
*/
public function get(): Client
{
if ($this->client instanceof Client && $this->client->isConnected()) {
return $this->client;
}
if (!$this->client instanceof PromiseInterface) {
$client = new Client(Loop::get(), [
'host' => $this->host,
'port' => $this->port,
'user' => $this->user,
'password' => $this->password,
'vhost' => $this->vhost,
'heartbeat' => $this->heartbeatSeconds,
]);
$this->client = $client->connect()->then(fn(): Client => $this->client = $client);
}
return await($this->client);
}
/**
* @psalm-suppress MissingThrowsDocblock
*/
public function disconnect(): void
{
if ($this->client === null) {
return;
}
$clientToDisconnect = $this->client;
$this->client = null;
if ($clientToDisconnect instanceof PromiseInterface) {
$clientToDisconnect = await($clientToDisconnect);
}
await($clientToDisconnect->disconnect());
}
}