forked from zeromq/php-zmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.php
378 lines (329 loc) · 10 KB
/
api.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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
<pre><code>
<?php
class ZMQContext {
/**
* Build a new ZMQContext. Persistent context is required for building
* persistent sockets.
*
*
* @param integer $io_threads Number of io threads
* @param boolean $is_persistent Whether the context is persistent
*
* @return void
*/
public function __construct($io_threads = 1, $is_persistent = true) {}
/**
* Construct a new ZMQ object. The extending class must call this method.
* The type is one of the ZMQ::SOCKET_* constants.
* Persistent id allows reusing the socket over multiple requests.
* If persistent_id parameter is specific the type parameter is ignored and the
* socket is of type that it was initially created with. Persistent context must
* be enabled for persistent_id to work. Setting incorrect socket type might
* cause failure later in connect/bind/setSockOpt.
*
* @param integer $type The type of the socket
* @param string $persistent_id The persistent id. Can be used to create
* persistent connections
* @param function $on_new_socket Called when a new socket is created
* @throws ZMQException
* @return ZMQSocket
*/
public function getSocket($type, $persistent_id = null, $on_new_socket = null) {}
/**
* Whether the context is persistent
*
* @return boolean
*/
public function isPersistent() {}
}
class ZMQSocket {
/**
* Publish-subscribe
* Compatible sockets: SOCKET_SUB
*/
const SOCKET_PAIR = 0;
/**
* Publish-subscribe
* Compatible sockets: SOCKET_SUB
*/
const SOCKET_PUB = 1;
/**
* Publish-subscribe
* Compatible sockets: SOCKET_PUB
*/
const SOCKET_SUB = 2;
/**
* Request-reply
* Compatible sockets: SOCKET_REP
*/
const SOCKET_REQ = 3;
/**
* Request-reply
* Compatible sockets: SOCKET_REQ
*/
const SOCKET_REP = 4;
/**
* TODO
*/
const SOCKET_XREQ = 5;
/**
* TODO
*/
const SOCKET_XREP = 6;
/**
* Parallelized pipeline
* Compatible sockets: SOCKET_DOWNSTREAM
*/
const SOCKET_UPSTREAM = 7;
/**
* Parallelized pipeline
* Compatible sockets: SOCKET_UPSTREAM
*/
const SOCKET_DOWNSTREAM = 8;
/**
* Set high water mark
* Valuetype: integer
*/
const SOCKOPT_HWM = 1;
/**
* Set low water mark
* Valuetype: integer
*/
const SOCKOPT_LWM = 2;
/**
* Set disk offload size
* Valuetype: integer
*/
const SOCKOPT_SWAP = 3;
/**
* Set I/O thread affinity
* Valuetype: integer
*/
const SOCKOPT_AFFINITY = 4;
/**
* Set socket identity
* Valuetype: string
*/
const SOCKOPT_IDENTITY = 5;
/**
* Establish message filter
* Valuetype: string
*/
const SOCKOPT_SUBSCRIBE = 6;
/**
* Remove message filter
* Valuetype: string
*/
const SOCKOPT_UNSUBSCRIBE = 7;
/**
* Set multicast data rate
* Valuetype: integer >= 0
*/
const SOCKOPT_RATE = 8;
/**
* Set multicast recovery interval
* Valuetype: integer >= 0
*/
const SOCKOPT_RECOVERY_IVL = 9;
/**
* Control multicast loopback
* Valuetype: integer >= 0
*/
const SOCKOPT_MCAST_LOOP = 10;
/**
* Set kernel transmit buffer size
* Valuetype: integer >= 0
*/
const SOCKOPT_SNDBUF = 11;
/**
* Set kernel receive buffer size
* Valuetype: integer >= 0
*/
const SOCKOPT_RCVBUF = 12;
/**
* Receive multipart message
*/
const SOCKOPT_RCVMORE = 13;
/**
* Set on non-blocking mode
*/
const MODE_NOBLOCK = 1;
/**
* Send multipart message
*/
const MODE_SNDMORE = 2;
/**
* Track if the socket is readable
*/
const POLL_IN = 1;
/**
* Track if the socket is writable
*/
const POLL_OUT = 2;
/**
* Construct a new ZMQ object. The extending class must call this method.
* The type is one of the ZMQ::SOCKET_* constants.
* Persistent id allows reusing the socket over multiple requests.
* If persistent_id parameter is specific the type parameter is ignored and the
* socket is of type that it was initially created with. Persistent context must
* be enabled for persistent_id to work. Setting incorrect socket type might
* cause failure later in connect/bind/setSockOpt.
*
* @param ZMQContext $context ZMQContext to build this object
* @param integer $type The type of the socket
* @param string $persistent_id The persistent id. Can be used to create
* persistent connections
* @param function $on_new_socket Called when a new socket is created
* @throws ZMQException
* @return void
*/
public function __construct(ZMQContext $context, $type, $persistent_id = null, $on_new_socket = null) {}
/**
* Sends a message to the queue.
*
* @param string $message The message to send
* @param integer $flags self::MODE_NOBLOCK or 0
* @throws ZMQException if sending message fails
*
* @return ZMQ
*/
public function send($message, $flags = 0) {}
/**
* Receives a message from the queue.
*
* @param integer $flags self::MODE_NOBLOCK or 0
* @throws ZMQException if receiving fails.
*
* @return string
*/
public function recv($flags = 0) {}
/**
* Connect the socket to a remote endpoint. For more information about the dsn
* see http://api.zeromq.org/zmq_connect.html. By default the method does not
* try to connect if it has been already connected to the address specified by $dsn.
*
* @param string $dsn The connect dsn
* @param boolean $force Tries to connect to end-point even if the object is already connected to the $dsn
*
* @throws ZMQException If connection fails
* @return ZMQ
*/
public function connect($dsn, $force = false) {}
/**
*
* Binds the socket to an end-point. For more information about the dsn see
* http://api.zeromq.org/zmq_connect.html. By default the method does not
* try to bind if it has been already bound to the address specified by $dsn.
*
* @param string $dsn The bind dsn
* @param boolean $force Tries to bind to end-point even if the object is already bound to the $dsn
*
* @throws ZMQException if binding fails
* @return ZMQ
*/
public function bind($dsn, $force = false) {}
/**
* Sets a socket option. For more information about socket options see
* http://api.zeromq.org/zmq_setsockopt.html
*
* @param integer $key The option key
* @param mixed $value The option value
*
* @throws ZMQException
* @return ZMQ
*/
public function setSockOpt($key, $value) {}
/**
* Gets a socket option. This method is available if ZMQ extension
* has been compiled against ZMQ version 2.0.7 or higher
*
* @since 0MQ 2.0.7
* @param integer $key The option key
*
* @throws ZMQException
* @return mixed
*/
public function getSockOpt($key) {}
/**
* Get endpoints where the socket is connected to. The return array
* contains two sub-arrays: 'connect' and 'bind'
*
* @throws ZMQException
* @return array
*/
public function getEndpoints() {}
/**
* Return the socket type. Returns one of ZMQ::SOCKET_* constants
*
* @throws ZMQException
* @return integer
*/
public function getSocketType() {}
/**
* Whether the socket is persistent
*
* @return boolean
*/
public function isPersistent() {}
}
class ZMQPoll {
/**
* Add a new object into the poll set. Returns the id for the object
* in the pollset.
*
* @param ZMQ $object Object to add to set
* @param integer $type Bit-mask of ZMQ::POLL_* constants
*
* @throws ZMQPollException if the object has not been initialized with polling
* @return integer
*/
public function add(ZMQ $object, $type) {}
/**
* Execute the poll. Readable and writable sockets are returned
* in the arrays passed by reference. If either of the given arrays
* is null the events of that type are not returned. Returns an integer
* indicated the amount of objects with events pending.
*
* @param array &$readable array where to return the readable objects
* @param array &$writable array where to return the writable objects
* @param integer $timeout Timeout for poll in microseconds. -1 polls as long as one of the objects comes readable/writable
*
* @throws ZMQPollException if polling fails
* @return integer
*/
public function poll(array &$readable, array &$writable, $timeout = -1) {}
/**
* Returns the ids of the objects that had ZMQ_POLLERR flag set on the last
* poll call. This method does not clear the last errors and the errors are
* cleared on next call to poll()
*
* @return array
*/
public function getLastErrors() {}
/**
* Removes an item from the poll object. The parameter can be ZMQ object,
* resource or the string id returned by 'add' method. Returns true if the
* item was removed and false if item had not been added to the poll object.
*
* @throws ZMQPollException if the poll object is empty
* @throws ZMQPollException if $item parameter is object but not an instance of ZMQ
*
* @param mixed $item The item to remove
* @return boolean
*/
public function remove($item) {}
/**
* Counts the items in the poll object
*
* @return integer
*/
public function count() {}
/**
* Removes all items from the poll set
*
* @return ZMQPoll
*/
public function clear() {}
}
?>
</code></pre>