-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathConnection.php
277 lines (232 loc) · 5.05 KB
/
Connection.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
<?php
declare(strict_types=1);
namespace RabbitMqModule\Options;
/**
* @psalm-type ConnectionOptions = array{
* type?: 'stream' | 'socket' | 'ssl' | 'lazy',
* host?: string,
* port?: int,
* username?: string,
* password?: string,
* vhost?: string,
* insist?: bool,
* loginMethod?: 'AMQPLAIN' | string,
* locale?: string,
* read_write_timeout?: int,
* keep_alive?: bool,
* connection_timeout?: int,
* heartbeat?: int
* }
*/
final class Connection extends AbstractOptions
{
protected string $type = 'stream';
protected string $host = 'localhost';
protected int $port = 5672;
protected string $username = 'guest';
protected string $password = 'guest';
protected string $vhost = '/';
protected bool $insist = false;
protected string $loginMethod = 'AMQPLAIN';
protected string $locale = 'en_US';
protected int $readWriteTimeout = 3;
protected bool $keepAlive = false;
protected int $connectionTimeout = 3;
protected int $heartbeat = 0;
/** @var array<string, mixed> */
protected array $sslOptions = [];
/**
* @psalm-param ConnectionOptions $data
*/
public static function fromArray(array $data): self
{
return new self($data);
}
public function getType(): string
{
return $this->type;
}
/**
* @internal
*
* @psalm-internal RabbitMqModule
*/
public function setType(string $type): void
{
$this->type = $type;
}
public function getHost(): string
{
return $this->host;
}
/**
* @internal
*
* @psalm-internal RabbitMqModule
*/
public function setHost(string $host): void
{
$this->host = $host;
}
public function getPort(): int
{
return $this->port;
}
/**
* @internal
*
* @psalm-internal RabbitMqModule
*/
public function setPort(int $port): void
{
$this->port = $port;
}
public function getUsername(): string
{
return $this->username;
}
/**
* @internal
*
* @psalm-internal RabbitMqModule
*/
public function setUsername(string $username): void
{
$this->username = $username;
}
public function getPassword(): string
{
return $this->password;
}
/**
* @internal
*
* @psalm-internal RabbitMqModule
*/
public function setPassword(string $password): void
{
$this->password = $password;
}
public function getVhost(): string
{
return $this->vhost;
}
/**
* @internal
*
* @psalm-internal RabbitMqModule
*/
public function setVhost(string $vhost): void
{
$this->vhost = $vhost;
}
public function isInsist(): bool
{
return $this->insist;
}
/**
* @internal
*
* @psalm-internal RabbitMqModule
*/
public function setInsist(bool $insist): void
{
$this->insist = $insist;
}
public function getLoginMethod(): string
{
return $this->loginMethod;
}
/**
* @internal
*
* @psalm-internal RabbitMqModule
*/
public function setLoginMethod(string $loginMethod): void
{
$this->loginMethod = $loginMethod;
}
public function getLocale(): string
{
return $this->locale;
}
/**
* @internal
*
* @psalm-internal RabbitMqModule
*/
public function setLocale(string $locale): void
{
$this->locale = $locale;
}
public function getReadWriteTimeout(): int
{
return $this->readWriteTimeout;
}
/**
* @internal
*
* @psalm-internal RabbitMqModule
*/
public function setReadWriteTimeout(int $readWriteTimeout): void
{
$this->readWriteTimeout = $readWriteTimeout;
}
public function isKeepAlive(): bool
{
return $this->keepAlive;
}
/**
* @internal
*
* @psalm-internal RabbitMqModule
*/
public function setKeepAlive(bool $keepAlive): void
{
$this->keepAlive = $keepAlive;
}
public function getConnectionTimeout(): int
{
return $this->connectionTimeout;
}
/**
* @internal
*
* @psalm-internal RabbitMqModule
*/
public function setConnectionTimeout(int $connectionTimeout): void
{
$this->connectionTimeout = $connectionTimeout;
}
public function getHeartbeat(): int
{
return $this->heartbeat;
}
/**
* @internal
*
* @psalm-internal RabbitMqModule
*/
public function setHeartbeat(int $heartbeat): void
{
$this->heartbeat = $heartbeat;
}
/**
* @return array<string, mixed>
*/
public function getSslOptions(): array
{
return $this->sslOptions;
}
/**
* @internal
*
* @psalm-internal RabbitMqModule
*
* @param array<string, mixed> $sslOptions
*/
public function setSslOptions(array $sslOptions): void
{
$this->sslOptions = $sslOptions;
}
}