@@ -19,13 +19,13 @@ export declare const version: string
19
19
* Unavailable capabilities will be absent or set to `false`.
20
20
*
21
21
* Possible keys include:
22
- * * `ipc` – Support for the `ipc://` protocol.
23
- * * `pgm` – Support for the `pgm://` protocol.
24
- * * `tipc` – Support for the `tipc://` protocol.
25
- * * `norm` – Support for the `norm://` protocol.
26
- * * `curve` – Support for the CURVE security mechanism.
27
- * * `gssapi` – Support for the GSSAPI security mechanism.
28
- * * `draft` – Wether the library is built with support for DRAFT sockets.
22
+ * * `ipc` - Support for the `ipc://` protocol.
23
+ * * `pgm` - Support for the `pgm://` protocol.
24
+ * * `tipc` - Support for the `tipc://` protocol.
25
+ * * `norm` - Support for the `norm://` protocol.
26
+ * * `curve` - Support for the CURVE security mechanism.
27
+ * * `gssapi` - Support for the GSSAPI security mechanism.
28
+ * * `draft` - Wether the library is built with support for DRAFT sockets.
29
29
*/
30
30
export declare const capability : Partial < {
31
31
ipc : boolean
@@ -65,7 +65,7 @@ export declare function curveKeyPair(): {
65
65
* A ØMQ context. Contexts manage the background I/O to send and receive
66
66
* messages of their associated sockets.
67
67
*
68
- * It is usually not necessary to instantiate a new context – the global
68
+ * It is usually not necessary to instantiate a new context - the global
69
69
* {@link context} is used for new sockets by default. The global context is the
70
70
* only context that is shared between threads (when using
71
71
* [worker_threads](https://nodejs.org/api/worker_threads.html)). Custom
@@ -176,76 +176,76 @@ type EventFor<T extends string, D = {}> = Expand<{type: T} & D>
176
176
* errors) that correspond to a specific operation are namespaced with a colon
177
177
* `:`, e.g. `bind:error` or `connect:retry`.
178
178
*
179
- * * **accept** – ZMQ_EVENT_ACCEPTED The socket has accepted a connection from a
179
+ * * **accept** - ZMQ_EVENT_ACCEPTED The socket has accepted a connection from a
180
180
* remote peer.
181
181
*
182
- * * **accept:error** – ZMQ_EVENT_ACCEPT_FAILED The socket has rejected a
182
+ * * **accept:error** - ZMQ_EVENT_ACCEPT_FAILED The socket has rejected a
183
183
* connection from a remote peer.
184
184
*
185
185
* The following additional details will be included with this event:
186
186
*
187
- * * `error` – An error object that describes the specific error
187
+ * * `error` - An error object that describes the specific error
188
188
* that occurred.
189
189
*
190
- * * **bind** – ZMQ_EVENT_LISTENING The socket was successfully bound to a
190
+ * * **bind** - ZMQ_EVENT_LISTENING The socket was successfully bound to a
191
191
* network interface.
192
192
*
193
- * * **bind:error** – ZMQ_EVENT_BIND_FAILED The socket could not bind to a given
193
+ * * **bind:error** - ZMQ_EVENT_BIND_FAILED The socket could not bind to a given
194
194
* interface.
195
195
*
196
196
* The following additional details will be included with this event:
197
197
*
198
- * * `error` – An error object that describes the specific error
198
+ * * `error` - An error object that describes the specific error
199
199
* that occurred.
200
200
*
201
- * * **connect** – ZMQ_EVENT_CONNECTED The socket has successfully connected to
201
+ * * **connect** - ZMQ_EVENT_CONNECTED The socket has successfully connected to
202
202
* a remote peer.
203
203
*
204
- * * **connect:delay** – ZMQ_EVENT_CONNECT_DELAYED A connect request on the
204
+ * * **connect:delay** - ZMQ_EVENT_CONNECT_DELAYED A connect request on the
205
205
* socket is pending.
206
206
*
207
- * * **connect:retry** – ZMQ_EVENT_CONNECT_RETRIED A connection attempt is being
207
+ * * **connect:retry** - ZMQ_EVENT_CONNECT_RETRIED A connection attempt is being
208
208
* handled by reconnect timer. Note that the reconnect interval is
209
209
* recalculated at each retry.
210
210
*
211
211
* The following additional details will be included with this event:
212
212
*
213
- * * `interval` – The current reconnect interval.
213
+ * * `interval` - The current reconnect interval.
214
214
*
215
- * * **close** – ZMQ_EVENT_CLOSED The socket was closed.
215
+ * * **close** - ZMQ_EVENT_CLOSED The socket was closed.
216
216
*
217
- * * **close:error** – ZMQ_EVENT_CLOSE_FAILED The socket close failed. Note that
217
+ * * **close:error** - ZMQ_EVENT_CLOSE_FAILED The socket close failed. Note that
218
218
* this event occurs **only on IPC** transports..
219
219
*
220
220
* The following additional details will be included with this event:
221
221
*
222
- * * `error` – An error object that describes the specific error
222
+ * * `error` - An error object that describes the specific error
223
223
* that occurred.
224
224
*
225
- * * **disconnect** – ZMQ_EVENT_DISCONNECTED The socket was disconnected
225
+ * * **disconnect** - ZMQ_EVENT_DISCONNECTED The socket was disconnected
226
226
* unexpectedly.
227
227
*
228
- * * **handshake** – ZMQ_EVENT_HANDSHAKE_SUCCEEDED The ZMTP security mechanism
228
+ * * **handshake** - ZMQ_EVENT_HANDSHAKE_SUCCEEDED The ZMTP security mechanism
229
229
* handshake succeeded. NOTE: This event may still be in DRAFT statea and not
230
230
* yet available in stable releases.
231
231
*
232
- * * **handshake:error:protocol** – ZMQ_EVENT_HANDSHAKE_FAILED_PROTOCOL The ZMTP
232
+ * * **handshake:error:protocol** - ZMQ_EVENT_HANDSHAKE_FAILED_PROTOCOL The ZMTP
233
233
* security mechanism handshake failed due to some mechanism protocol error,
234
234
* either between the ZMTP mechanism peers, or between the mechanism server
235
235
* and the ZAP handler. This indicates a configuration or implementation error
236
236
* in either peer resp. the ZAP handler. NOTE: This event may still be in
237
237
* DRAFT state and not yet available in stable releases.
238
238
*
239
- * * **handshake:error:auth** – ZMQ_EVENT_HANDSHAKE_FAILED_AUTH The ZMTP
239
+ * * **handshake:error:auth** - ZMQ_EVENT_HANDSHAKE_FAILED_AUTH The ZMTP
240
240
* security mechanism handshake failed due to an authentication failure. NOTE:
241
241
* This event may still be in DRAFT state and not yet available in stable
242
242
* releases.
243
243
*
244
- * * **handshake:error:other** – ZMQ_EVENT_HANDSHAKE_FAILED_NO_DETAIL
244
+ * * **handshake:error:other** - ZMQ_EVENT_HANDSHAKE_FAILED_NO_DETAIL
245
245
* Unspecified error during handshake. NOTE: This event may still be in DRAFT
246
246
* state and not yet available in stable releases.
247
247
*
248
- * * **end** – ZMQ_EVENT_MONITOR_STOPPED Monitoring on this socket ended.
248
+ * * **end** - ZMQ_EVENT_MONITOR_STOPPED Monitoring on this socket ended.
249
249
*
250
250
* * **unknown** An event was generated by ZeroMQ that the Node.js library could
251
251
* not interpret. Please submit a pull request for new event types if they are
0 commit comments