@bitpoolos/edge-bacnet 1.0.6 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (181) hide show
  1. package/bacnet_client.js +650 -233
  2. package/bacnet_device.js +65 -16
  3. package/bacnet_gateway.html +242 -99
  4. package/bacnet_gateway.js +211 -27
  5. package/bacnet_object.js +1 -1
  6. package/bacnet_read.html +211 -133
  7. package/bacnet_read.js +24 -24
  8. package/bacnet_server.js +321 -0
  9. package/bacnet_write.html +24 -15
  10. package/bacnet_write.js +0 -2
  11. package/common.js +95 -9
  12. package/edge-bacnet-datastore.cfg +0 -0
  13. package/package.json +6 -4
  14. package/resources/confirmationservice.min.js +1 -0
  15. package/resources/confirmdialog.min.js +1 -0
  16. package/resources/fonts/primeicons.woff2 +0 -0
  17. package/resources/node-bacnet/CHANGELOG.md +481 -0
  18. package/resources/{bacstack → node-bacnet}/LICENSE.md +3 -1
  19. package/resources/node-bacnet/README.md +91 -0
  20. package/resources/node-bacnet/docs/Client.html +4422 -0
  21. package/resources/node-bacnet/docs/bacnet-icon-quad.png +0 -0
  22. package/resources/node-bacnet/docs/bacnet-icon-quad128.png +0 -0
  23. package/resources/node-bacnet/docs/bacnet-icon-quad64.png +0 -0
  24. package/resources/node-bacnet/docs/bacnet-icon-small.xcf +0 -0
  25. package/resources/node-bacnet/docs/bacnet-icon.xcf +0 -0
  26. package/resources/node-bacnet/docs/bacnet.html +7032 -0
  27. package/resources/node-bacnet/docs/client.js.html +1759 -0
  28. package/resources/node-bacnet/docs/enum.js.html +2530 -0
  29. package/resources/node-bacnet/docs/global.html +2068 -0
  30. package/resources/node-bacnet/docs/images/mocha-logo.svg +65 -0
  31. package/resources/node-bacnet/docs/index.html +283 -0
  32. package/resources/node-bacnet/docs/scripts/collapse.js +11 -0
  33. package/resources/node-bacnet/docs/scripts/jquery-3.1.1.min.js +4 -0
  34. package/resources/node-bacnet/docs/scripts/linenumber.js +26 -0
  35. package/resources/node-bacnet/docs/scripts/prettify/Apache-License-2.0.txt +202 -0
  36. package/resources/node-bacnet/docs/scripts/prettify/lang-css.js +2 -0
  37. package/resources/node-bacnet/docs/scripts/prettify/prettify.js +28 -0
  38. package/resources/node-bacnet/docs/scripts/search.js +47 -0
  39. package/resources/node-bacnet/docs/services_i-am.js.html +157 -0
  40. package/resources/node-bacnet/docs/services_time-sync.js.html +118 -0
  41. package/resources/node-bacnet/docs/services_who-is.js.html +138 -0
  42. package/resources/node-bacnet/docs/styles/jsdoc.css +683 -0
  43. package/resources/node-bacnet/docs/styles/prettify.css +82 -0
  44. package/resources/node-bacnet/examples/discover-devices.js +66 -0
  45. package/resources/node-bacnet/examples/read-device.js +510 -0
  46. package/resources/node-bacnet/examples/subscribe-cov.js +75 -0
  47. package/resources/{bacstack → node-bacnet}/index.js +3 -0
  48. package/resources/{bacstack → node-bacnet}/lib/apdu.js +56 -39
  49. package/resources/{bacstack → node-bacnet}/lib/asn1.js +550 -532
  50. package/resources/node-bacnet/lib/bvlc.js +90 -0
  51. package/resources/node-bacnet/lib/client.js +1695 -0
  52. package/resources/node-bacnet/lib/enum.js +2463 -0
  53. package/resources/node-bacnet/lib/npdu.js +123 -0
  54. package/resources/{bacstack → node-bacnet}/lib/services/add-list-element.js +12 -6
  55. package/resources/{bacstack → node-bacnet}/lib/services/alarm-acknowledge.js +3 -3
  56. package/resources/{bacstack → node-bacnet}/lib/services/alarm-summary.js +5 -4
  57. package/resources/{bacstack → node-bacnet}/lib/services/atomic-read-file.js +49 -26
  58. package/resources/{bacstack → node-bacnet}/lib/services/atomic-write-file.js +40 -23
  59. package/resources/{bacstack → node-bacnet}/lib/services/cov-notify.js +33 -17
  60. package/resources/{bacstack → node-bacnet}/lib/services/create-object.js +23 -13
  61. package/resources/{bacstack → node-bacnet}/lib/services/delete-object.js +7 -2
  62. package/resources/{bacstack → node-bacnet}/lib/services/device-communication-control.js +8 -3
  63. package/resources/{bacstack → node-bacnet}/lib/services/error.js +7 -0
  64. package/resources/{bacstack → node-bacnet}/lib/services/event-information.js +10 -9
  65. package/resources/{bacstack → node-bacnet}/lib/services/event-notify-data.js +38 -16
  66. package/resources/{bacstack → node-bacnet}/lib/services/get-enrollment-summary.js +24 -11
  67. package/resources/{bacstack → node-bacnet}/lib/services/get-event-information.js +28 -13
  68. package/resources/node-bacnet/lib/services/i-am.js +90 -0
  69. package/resources/{bacstack/lib/services/i-have-broadcast.js → node-bacnet/lib/services/i-have.js} +3 -2
  70. package/resources/{bacstack → node-bacnet}/lib/services/index.js +7 -4
  71. package/resources/{bacstack → node-bacnet}/lib/services/life-safety-operation.js +3 -2
  72. package/resources/{bacstack → node-bacnet}/lib/services/private-transfer.js +3 -2
  73. package/resources/{bacstack → node-bacnet}/lib/services/read-property-multiple.js +11 -6
  74. package/resources/{bacstack → node-bacnet}/lib/services/read-property.js +42 -24
  75. package/resources/{bacstack → node-bacnet}/lib/services/read-range.js +37 -27
  76. package/resources/node-bacnet/lib/services/register-foreign-device.js +18 -0
  77. package/resources/{bacstack → node-bacnet}/lib/services/reinitialize-device.js +9 -4
  78. package/resources/{bacstack → node-bacnet}/lib/services/subscribe-cov.js +9 -4
  79. package/resources/{bacstack → node-bacnet}/lib/services/subscribe-property.js +18 -8
  80. package/resources/{bacstack → node-bacnet}/lib/services/time-sync.js +28 -5
  81. package/resources/{bacstack → node-bacnet}/lib/services/who-has.js +3 -3
  82. package/resources/{bacstack → node-bacnet}/lib/services/who-is.js +42 -9
  83. package/resources/{bacstack → node-bacnet}/lib/services/write-property-multiple.js +33 -16
  84. package/resources/{bacstack → node-bacnet}/lib/services/write-property.js +23 -13
  85. package/resources/node-bacnet/lib/transport.js +82 -0
  86. package/resources/node-bacnet/package.json +92 -0
  87. package/resources/primeicons.css +90 -2
  88. package/resources/bacstack/.codeclimate.yml +0 -15
  89. package/resources/bacstack/.dockerignore +0 -5
  90. package/resources/bacstack/.editorconfig +0 -13
  91. package/resources/bacstack/.eslintrc.yml +0 -13
  92. package/resources/bacstack/.github/ISSUE_TEMPLATE.md +0 -26
  93. package/resources/bacstack/.github/PULL_REQUEST_TEMPLATE.md +0 -14
  94. package/resources/bacstack/.github/workflows/ci.yml +0 -39
  95. package/resources/bacstack/.jscsrc +0 -8
  96. package/resources/bacstack/.jshintrc +0 -50
  97. package/resources/bacstack/.travis.yml +0 -27
  98. package/resources/bacstack/CHANGELOG.md +0 -232
  99. package/resources/bacstack/CODE_OF_CONDUCT.md +0 -74
  100. package/resources/bacstack/CONTRIBUTING.md +0 -77
  101. package/resources/bacstack/Dockerfile +0 -15
  102. package/resources/bacstack/FAQ.md +0 -64
  103. package/resources/bacstack/README.md +0 -157
  104. package/resources/bacstack/docker-compose.yml +0 -9
  105. package/resources/bacstack/lib/adpu.js +0 -190
  106. package/resources/bacstack/lib/bvlc.js +0 -43
  107. package/resources/bacstack/lib/client.js +0 -1028
  108. package/resources/bacstack/lib/enum.js +0 -1314
  109. package/resources/bacstack/lib/npdu.js +0 -119
  110. package/resources/bacstack/lib/services/i-am-broadcast.js +0 -51
  111. package/resources/bacstack/lib/services.js +0 -1963
  112. package/resources/bacstack/lib/transport.js +0 -52
  113. package/resources/bacstack/package-lock.json +0 -7974
  114. package/resources/bacstack/package.json +0 -84
  115. package/resources/bacstack/test/compliance/who-is.spec.js +0 -37
  116. package/resources/bacstack/test/integration/acknowledge-alarm.spec.js +0 -14
  117. package/resources/bacstack/test/integration/add-list-element.spec.js +0 -16
  118. package/resources/bacstack/test/integration/confirmed-event-notification.spec.js +0 -30
  119. package/resources/bacstack/test/integration/confirmed-private-transfer.spec.js +0 -15
  120. package/resources/bacstack/test/integration/create-object.spec.js +0 -16
  121. package/resources/bacstack/test/integration/delete-object.spec.js +0 -14
  122. package/resources/bacstack/test/integration/device-communication-control.spec.js +0 -14
  123. package/resources/bacstack/test/integration/get-alarm-summary.spec.js +0 -14
  124. package/resources/bacstack/test/integration/get-enrollment-summary.spec.js +0 -15
  125. package/resources/bacstack/test/integration/get-event-information.spec.js +0 -14
  126. package/resources/bacstack/test/integration/read-file.spec.js +0 -14
  127. package/resources/bacstack/test/integration/read-property-multiple.spec.js +0 -110
  128. package/resources/bacstack/test/integration/read-property.spec.js +0 -14
  129. package/resources/bacstack/test/integration/read-range.spec.js +0 -14
  130. package/resources/bacstack/test/integration/reinitialize-sevice.spec.js +0 -14
  131. package/resources/bacstack/test/integration/remove-list-element.spec.js +0 -16
  132. package/resources/bacstack/test/integration/subscribe-cov.spec.js +0 -14
  133. package/resources/bacstack/test/integration/subscribe-property.spec.js +0 -14
  134. package/resources/bacstack/test/integration/time-sync-utc.spec.js +0 -10
  135. package/resources/bacstack/test/integration/time-sync.spec.js +0 -10
  136. package/resources/bacstack/test/integration/unconfirmed-event-notification.spec.js +0 -28
  137. package/resources/bacstack/test/integration/unconfirmed-private-transfer.spec.js +0 -11
  138. package/resources/bacstack/test/integration/utils.js +0 -30
  139. package/resources/bacstack/test/integration/who-is.spec.js +0 -17
  140. package/resources/bacstack/test/integration/write-file.spec.js +0 -14
  141. package/resources/bacstack/test/integration/write-property-multiple.spec.js +0 -19
  142. package/resources/bacstack/test/integration/write-property.spec.js +0 -14
  143. package/resources/bacstack/test/unit/apdu.spec.js +0 -162
  144. package/resources/bacstack/test/unit/asn1.spec.js +0 -39
  145. package/resources/bacstack/test/unit/bacnet-apdu.spec.js +0 -161
  146. package/resources/bacstack/test/unit/bacnet-asn1.spec.js +0 -32
  147. package/resources/bacstack/test/unit/bacnet-bvlc.spec.js +0 -57
  148. package/resources/bacstack/test/unit/bacnet-npdu.spec.js +0 -118
  149. package/resources/bacstack/test/unit/bacnet-services.spec.js +0 -2052
  150. package/resources/bacstack/test/unit/bvlc.spec.js +0 -58
  151. package/resources/bacstack/test/unit/npdu.spec.js +0 -119
  152. package/resources/bacstack/test/unit/service-add-list-element.spec.js +0 -24
  153. package/resources/bacstack/test/unit/service-alarm-acknowledge.spec.js +0 -71
  154. package/resources/bacstack/test/unit/service-alarm-summary.spec.js +0 -22
  155. package/resources/bacstack/test/unit/service-atomic-read-file.spec.js +0 -54
  156. package/resources/bacstack/test/unit/service-atomic-write-file.spec.js +0 -56
  157. package/resources/bacstack/test/unit/service-cov-notify.spec.js +0 -98
  158. package/resources/bacstack/test/unit/service-create-object.spec.js +0 -90
  159. package/resources/bacstack/test/unit/service-delete-object.spec.js +0 -17
  160. package/resources/bacstack/test/unit/service-device-communication-control.spec.js +0 -29
  161. package/resources/bacstack/test/unit/service-error.spec.js +0 -17
  162. package/resources/bacstack/test/unit/service-event-information.spec.js +0 -48
  163. package/resources/bacstack/test/unit/service-event-notify-data.spec.js +0 -310
  164. package/resources/bacstack/test/unit/service-get-enrollment-summary.spec.js +0 -45
  165. package/resources/bacstack/test/unit/service-get-event-information.spec.js +0 -62
  166. package/resources/bacstack/test/unit/service-i-am.spec.js +0 -19
  167. package/resources/bacstack/test/unit/service-i-have-broadcast.spec.js +0 -18
  168. package/resources/bacstack/test/unit/service-life-safety-operation.spec.js +0 -19
  169. package/resources/bacstack/test/unit/service-private-transfer.spec.js +0 -18
  170. package/resources/bacstack/test/unit/service-read-property-multiple.spec.js +0 -131
  171. package/resources/bacstack/test/unit/service-read-property.spec.js +0 -541
  172. package/resources/bacstack/test/unit/service-read-range.spec.js +0 -97
  173. package/resources/bacstack/test/unit/service-reinitialize-device.spec.js +0 -27
  174. package/resources/bacstack/test/unit/service-subscribe-cov.spec.js +0 -32
  175. package/resources/bacstack/test/unit/service-subscribe-property.spec.js +0 -50
  176. package/resources/bacstack/test/unit/service-time-sync.spec.js +0 -18
  177. package/resources/bacstack/test/unit/service-who-has.spec.js +0 -33
  178. package/resources/bacstack/test/unit/service-who-is.spec.js +0 -17
  179. package/resources/bacstack/test/unit/service-write-property-multiple.spec.js +0 -143
  180. package/resources/bacstack/test/unit/service-write-property.spec.js +0 -198
  181. package/resources/bacstack/test/unit/utils.js +0 -6
@@ -0,0 +1,4422 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+
5
+ <meta charset="utf-8">
6
+ <title>Client - Documentation</title>
7
+
8
+
9
+ <script src="scripts/prettify/prettify.js"></script>
10
+ <script src="scripts/prettify/lang-css.js"></script>
11
+
12
+ <link type="text/css" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:400,700">
13
+ <link type="text/css" rel="stylesheet" href="styles/prettify.css">
14
+ <link type="text/css" rel="stylesheet" href="styles/jsdoc.css">
15
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
16
+ </head>
17
+ <body>
18
+
19
+ <input type="checkbox" id="nav-trigger" class="nav-trigger" />
20
+ <label for="nav-trigger" class="navicon-button x">
21
+ <div class="navicon"></div>
22
+ </label>
23
+
24
+ <label for="nav-trigger" class="overlay"></label>
25
+
26
+ <nav >
27
+
28
+ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="bacnet.html">bacnet</a><ul class='methods'><li data-type='method'><a href="bacnet.html#.close">close</a></li><li data-type='method'><a href="bacnet.html#.confirmedCOVNotification">confirmedCOVNotification</a></li><li data-type='method'><a href="bacnet.html#.deviceCommunicationControl">deviceCommunicationControl</a></li><li data-type='method'><a href="bacnet.html#.iAmResponse">iAmResponse</a></li><li data-type='method'><a href="bacnet.html#.readProperty">readProperty</a></li><li data-type='method'><a href="bacnet.html#.readPropertyMultiple">readPropertyMultiple</a></li><li data-type='method'><a href="bacnet.html#.readPropertyResponse">readPropertyResponse</a></li><li data-type='method'><a href="bacnet.html#.reinitializeDevice">reinitializeDevice</a></li><li data-type='method'><a href="bacnet.html#.resultResponse">resultResponse</a></li><li data-type='method'><a href="bacnet.html#.timeSync">timeSync</a></li><li data-type='method'><a href="bacnet.html#.timeSyncUTC">timeSyncUTC</a></li><li data-type='method'><a href="bacnet.html#.unconfirmedCOVNotification">unconfirmedCOVNotification</a></li><li data-type='method'><a href="bacnet.html#.whoIs">whoIs</a></li><li data-type='method'><a href="bacnet.html#.writeProperty">writeProperty</a></li><li data-type='method'><a href="bacnet.html#.writePropertyMultiple">writePropertyMultiple</a></li></ul></li><li><a href="Client.html">Client</a><ul class='methods'><li data-type='method'><a href="Client.html#.createBitstring">createBitstring</a></li><li data-type='method'><a href="Client.html#acknowledgeAlarm">acknowledgeAlarm</a></li><li data-type='method'><a href="Client.html#addListElement">addListElement</a></li><li data-type='method'><a href="Client.html#confirmedEventNotification">confirmedEventNotification</a></li><li data-type='method'><a href="Client.html#confirmedPrivateTransfer">confirmedPrivateTransfer</a></li><li data-type='method'><a href="Client.html#createObject">createObject</a></li><li data-type='method'><a href="Client.html#deleteObject">deleteObject</a></li><li data-type='method'><a href="Client.html#errorResponse">errorResponse</a></li><li data-type='method'><a href="Client.html#getAlarmSummary">getAlarmSummary</a></li><li data-type='method'><a href="Client.html#getEnrollmentSummary">getEnrollmentSummary</a></li><li data-type='method'><a href="Client.html#getEventInformation">getEventInformation</a></li><li data-type='method'><a href="Client.html#iHaveResponse">iHaveResponse</a></li><li data-type='method'><a href="Client.html#readFile">readFile</a></li><li data-type='method'><a href="Client.html#readRange">readRange</a></li><li data-type='method'><a href="Client.html#removeListElement">removeListElement</a></li><li data-type='method'><a href="Client.html#sendBvlc">sendBvlc</a></li><li data-type='method'><a href="Client.html#simpleAckResponse">simpleAckResponse</a></li><li data-type='method'><a href="Client.html#subscribeCov">subscribeCov</a></li><li data-type='method'><a href="Client.html#subscribeProperty">subscribeProperty</a></li><li data-type='method'><a href="Client.html#unconfirmedEventNotification">unconfirmedEventNotification</a></li><li data-type='method'><a href="Client.html#unconfirmedPrivateTransfer">unconfirmedPrivateTransfer</a></li><li data-type='method'><a href="Client.html#writeFile">writeFile</a></li></ul></li></ul><h3>Events</h3><ul><li><a href="bacnet.html#.event:error">error</a></li><li><a href="bacnet.html#.event:iAm">iAm</a></li><li><a href="bacnet.html#.event:timeSync">timeSync</a></li><li><a href="bacnet.html#.event:whoIs">whoIs</a></li></ul><h3>Global</h3><ul><li><a href="global.html#ApplicationTag">ApplicationTag</a></li><li><a href="global.html#EnableDisable">EnableDisable</a></li><li><a href="global.html#MaxApduLengthAccepted">MaxApduLengthAccepted</a></li><li><a href="global.html#MaxSegmentsAccepted">MaxSegmentsAccepted</a></li><li><a href="global.html#ReinitializedState">ReinitializedState</a></li><li><a href="global.html#usc">usc</a></li></ul>
29
+ </nav>
30
+
31
+ <div id="main">
32
+
33
+ <h1 class="page-title">Client</h1>
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+ <section>
42
+
43
+ <header>
44
+
45
+ <h2>
46
+ Client
47
+ </h2>
48
+
49
+
50
+ </header>
51
+
52
+ <article>
53
+
54
+ <div class="container-overview">
55
+
56
+
57
+
58
+
59
+
60
+ <h4 class="name" id="Client"><span class="type-signature"></span>new Client<span class="signature">(options)</span><span class="type-signature"></span></h4>
61
+
62
+
63
+
64
+
65
+
66
+
67
+ <dl class="details">
68
+
69
+
70
+ <dt class="tag-source">Source:</dt>
71
+ <dd class="tag-source"><ul class="dummy"><li>
72
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line87">line 87</a>
73
+ </li></ul></dd>
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
+ </dl>
106
+
107
+
108
+
109
+
110
+
111
+
112
+
113
+
114
+
115
+
116
+
117
+
118
+
119
+
120
+
121
+ <h5>Parameters:</h5>
122
+
123
+
124
+ <table class="params">
125
+ <thead>
126
+ <tr>
127
+
128
+ <th>Name</th>
129
+
130
+
131
+ <th>Type</th>
132
+
133
+
134
+
135
+
136
+
137
+ <th class="last">Description</th>
138
+ </tr>
139
+ </thead>
140
+
141
+ <tbody>
142
+
143
+
144
+ <tr>
145
+
146
+ <td class="name"><code>options</code></td>
147
+
148
+
149
+ <td class="type">
150
+
151
+ </td>
152
+
153
+
154
+
155
+
156
+
157
+ <td class="description last"></td>
158
+ </tr>
159
+
160
+
161
+ </tbody>
162
+ </table>
163
+
164
+
165
+
166
+
167
+
168
+
169
+
170
+
171
+
172
+
173
+
174
+
175
+
176
+
177
+
178
+
179
+
180
+ </div>
181
+
182
+
183
+
184
+
185
+
186
+
187
+
188
+
189
+
190
+
191
+
192
+
193
+
194
+
195
+
196
+ <h3 class="subsection-title">Methods</h3>
197
+
198
+
199
+
200
+
201
+
202
+
203
+ <h4 class="name" id=".createBitstring"><span class="type-signature">(static) </span>createBitstring<span class="signature">()</span><span class="type-signature"></span></h4>
204
+
205
+
206
+
207
+
208
+
209
+
210
+ <dl class="details">
211
+
212
+
213
+ <dt class="tag-source">Source:</dt>
214
+ <dd class="tag-source"><ul class="dummy"><li>
215
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1665">line 1665</a>
216
+ </li></ul></dd>
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
+ </dl>
249
+
250
+
251
+
252
+
253
+
254
+ <div class="description">
255
+ Helper function to take an array of enums and produce a bitstring suitable
256
+ for inclusion as a property.
257
+ </div>
258
+
259
+
260
+
261
+
262
+
263
+
264
+
265
+
266
+
267
+ <h5>Example</h5>
268
+
269
+ <pre class="prettyprint"><code>[bacnet.enum.PropertyIdentifier.PROTOCOL_OBJECT_TYPES_SUPPORTED]: [
270
+ {value: bacnet.createBitstring([
271
+ bacnet.enum.ObjectTypesSupported.ANALOG_INPUT,
272
+ bacnet.enum.ObjectTypesSupported.ANALOG_OUTPUT,
273
+ ]),
274
+ type: bacnet.enum.ApplicationTag.BIT_STRING},
275
+ ],</code></pre>
276
+
277
+
278
+
279
+
280
+
281
+
282
+
283
+
284
+
285
+
286
+
287
+
288
+
289
+
290
+
291
+
292
+
293
+
294
+
295
+
296
+
297
+
298
+
299
+ <h4 class="name" id="acknowledgeAlarm"><span class="type-signature"></span>acknowledgeAlarm<span class="signature">(receiver, objectId, eventState, ackText, evTimeStamp, ackTimeStamp, options, next)</span><span class="type-signature"></span></h4>
300
+
301
+
302
+
303
+
304
+
305
+
306
+ <dl class="details">
307
+
308
+
309
+ <dt class="tag-source">Source:</dt>
310
+ <dd class="tag-source"><ul class="dummy"><li>
311
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1374">line 1374</a>
312
+ </li></ul></dd>
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
+ </dl>
345
+
346
+
347
+
348
+
349
+
350
+
351
+
352
+
353
+
354
+
355
+
356
+
357
+
358
+
359
+
360
+ <h5>Parameters:</h5>
361
+
362
+
363
+ <table class="params">
364
+ <thead>
365
+ <tr>
366
+
367
+ <th>Name</th>
368
+
369
+
370
+ <th>Type</th>
371
+
372
+
373
+
374
+
375
+
376
+ <th class="last">Description</th>
377
+ </tr>
378
+ </thead>
379
+
380
+ <tbody>
381
+
382
+
383
+ <tr>
384
+
385
+ <td class="name"><code>receiver</code></td>
386
+
387
+
388
+ <td class="type">
389
+
390
+ </td>
391
+
392
+
393
+
394
+
395
+
396
+ <td class="description last"></td>
397
+ </tr>
398
+
399
+
400
+
401
+ <tr>
402
+
403
+ <td class="name"><code>objectId</code></td>
404
+
405
+
406
+ <td class="type">
407
+
408
+ </td>
409
+
410
+
411
+
412
+
413
+
414
+ <td class="description last"></td>
415
+ </tr>
416
+
417
+
418
+
419
+ <tr>
420
+
421
+ <td class="name"><code>eventState</code></td>
422
+
423
+
424
+ <td class="type">
425
+
426
+ </td>
427
+
428
+
429
+
430
+
431
+
432
+ <td class="description last"></td>
433
+ </tr>
434
+
435
+
436
+
437
+ <tr>
438
+
439
+ <td class="name"><code>ackText</code></td>
440
+
441
+
442
+ <td class="type">
443
+
444
+ </td>
445
+
446
+
447
+
448
+
449
+
450
+ <td class="description last"></td>
451
+ </tr>
452
+
453
+
454
+
455
+ <tr>
456
+
457
+ <td class="name"><code>evTimeStamp</code></td>
458
+
459
+
460
+ <td class="type">
461
+
462
+ </td>
463
+
464
+
465
+
466
+
467
+
468
+ <td class="description last"></td>
469
+ </tr>
470
+
471
+
472
+
473
+ <tr>
474
+
475
+ <td class="name"><code>ackTimeStamp</code></td>
476
+
477
+
478
+ <td class="type">
479
+
480
+ </td>
481
+
482
+
483
+
484
+
485
+
486
+ <td class="description last"></td>
487
+ </tr>
488
+
489
+
490
+
491
+ <tr>
492
+
493
+ <td class="name"><code>options</code></td>
494
+
495
+
496
+ <td class="type">
497
+
498
+ </td>
499
+
500
+
501
+
502
+
503
+
504
+ <td class="description last"></td>
505
+ </tr>
506
+
507
+
508
+
509
+ <tr>
510
+
511
+ <td class="name"><code>next</code></td>
512
+
513
+
514
+ <td class="type">
515
+
516
+ </td>
517
+
518
+
519
+
520
+
521
+
522
+ <td class="description last"></td>
523
+ </tr>
524
+
525
+
526
+ </tbody>
527
+ </table>
528
+
529
+
530
+
531
+
532
+
533
+
534
+
535
+
536
+
537
+
538
+
539
+
540
+
541
+
542
+
543
+
544
+
545
+
546
+
547
+
548
+
549
+ <h4 class="name" id="addListElement"><span class="type-signature"></span>addListElement<span class="signature">(receiver, objectId, reference, values, options, next)</span><span class="type-signature"></span></h4>
550
+
551
+
552
+
553
+
554
+
555
+
556
+ <dl class="details">
557
+
558
+
559
+ <dt class="tag-source">Source:</dt>
560
+ <dd class="tag-source"><ul class="dummy"><li>
561
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1283">line 1283</a>
562
+ </li></ul></dd>
563
+
564
+
565
+
566
+
567
+
568
+
569
+
570
+
571
+
572
+
573
+
574
+
575
+
576
+
577
+
578
+
579
+
580
+
581
+
582
+
583
+
584
+
585
+
586
+
587
+
588
+
589
+
590
+
591
+
592
+
593
+
594
+ </dl>
595
+
596
+
597
+
598
+
599
+
600
+
601
+
602
+
603
+
604
+
605
+
606
+
607
+
608
+
609
+
610
+ <h5>Parameters:</h5>
611
+
612
+
613
+ <table class="params">
614
+ <thead>
615
+ <tr>
616
+
617
+ <th>Name</th>
618
+
619
+
620
+ <th>Type</th>
621
+
622
+
623
+
624
+
625
+
626
+ <th class="last">Description</th>
627
+ </tr>
628
+ </thead>
629
+
630
+ <tbody>
631
+
632
+
633
+ <tr>
634
+
635
+ <td class="name"><code>receiver</code></td>
636
+
637
+
638
+ <td class="type">
639
+
640
+ </td>
641
+
642
+
643
+
644
+
645
+
646
+ <td class="description last"></td>
647
+ </tr>
648
+
649
+
650
+
651
+ <tr>
652
+
653
+ <td class="name"><code>objectId</code></td>
654
+
655
+
656
+ <td class="type">
657
+
658
+ </td>
659
+
660
+
661
+
662
+
663
+
664
+ <td class="description last"></td>
665
+ </tr>
666
+
667
+
668
+
669
+ <tr>
670
+
671
+ <td class="name"><code>reference</code></td>
672
+
673
+
674
+ <td class="type">
675
+
676
+ </td>
677
+
678
+
679
+
680
+
681
+
682
+ <td class="description last"></td>
683
+ </tr>
684
+
685
+
686
+
687
+ <tr>
688
+
689
+ <td class="name"><code>values</code></td>
690
+
691
+
692
+ <td class="type">
693
+
694
+ </td>
695
+
696
+
697
+
698
+
699
+
700
+ <td class="description last"></td>
701
+ </tr>
702
+
703
+
704
+
705
+ <tr>
706
+
707
+ <td class="name"><code>options</code></td>
708
+
709
+
710
+ <td class="type">
711
+
712
+ </td>
713
+
714
+
715
+
716
+
717
+
718
+ <td class="description last"></td>
719
+ </tr>
720
+
721
+
722
+
723
+ <tr>
724
+
725
+ <td class="name"><code>next</code></td>
726
+
727
+
728
+ <td class="type">
729
+
730
+ </td>
731
+
732
+
733
+
734
+
735
+
736
+ <td class="description last"></td>
737
+ </tr>
738
+
739
+
740
+ </tbody>
741
+ </table>
742
+
743
+
744
+
745
+
746
+
747
+
748
+
749
+
750
+
751
+
752
+
753
+
754
+
755
+
756
+
757
+
758
+
759
+
760
+
761
+
762
+
763
+ <h4 class="name" id="confirmedEventNotification"><span class="type-signature"></span>confirmedEventNotification<span class="signature">(receiver, eventNotification, options, next)</span><span class="type-signature"></span></h4>
764
+
765
+
766
+
767
+
768
+
769
+
770
+ <dl class="details">
771
+
772
+
773
+ <dt class="tag-source">Source:</dt>
774
+ <dd class="tag-source"><ul class="dummy"><li>
775
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1489">line 1489</a>
776
+ </li></ul></dd>
777
+
778
+
779
+
780
+
781
+
782
+
783
+
784
+
785
+
786
+
787
+
788
+
789
+
790
+
791
+
792
+
793
+
794
+
795
+
796
+
797
+
798
+
799
+
800
+
801
+
802
+
803
+
804
+
805
+
806
+
807
+
808
+ </dl>
809
+
810
+
811
+
812
+
813
+
814
+
815
+
816
+
817
+
818
+
819
+
820
+
821
+
822
+
823
+
824
+ <h5>Parameters:</h5>
825
+
826
+
827
+ <table class="params">
828
+ <thead>
829
+ <tr>
830
+
831
+ <th>Name</th>
832
+
833
+
834
+ <th>Type</th>
835
+
836
+
837
+
838
+
839
+
840
+ <th class="last">Description</th>
841
+ </tr>
842
+ </thead>
843
+
844
+ <tbody>
845
+
846
+
847
+ <tr>
848
+
849
+ <td class="name"><code>receiver</code></td>
850
+
851
+
852
+ <td class="type">
853
+
854
+ </td>
855
+
856
+
857
+
858
+
859
+
860
+ <td class="description last"></td>
861
+ </tr>
862
+
863
+
864
+
865
+ <tr>
866
+
867
+ <td class="name"><code>eventNotification</code></td>
868
+
869
+
870
+ <td class="type">
871
+
872
+ </td>
873
+
874
+
875
+
876
+
877
+
878
+ <td class="description last"></td>
879
+ </tr>
880
+
881
+
882
+
883
+ <tr>
884
+
885
+ <td class="name"><code>options</code></td>
886
+
887
+
888
+ <td class="type">
889
+
890
+ </td>
891
+
892
+
893
+
894
+
895
+
896
+ <td class="description last"></td>
897
+ </tr>
898
+
899
+
900
+
901
+ <tr>
902
+
903
+ <td class="name"><code>next</code></td>
904
+
905
+
906
+ <td class="type">
907
+
908
+ </td>
909
+
910
+
911
+
912
+
913
+
914
+ <td class="description last"></td>
915
+ </tr>
916
+
917
+
918
+ </tbody>
919
+ </table>
920
+
921
+
922
+
923
+
924
+
925
+
926
+
927
+
928
+
929
+
930
+
931
+
932
+
933
+
934
+
935
+
936
+
937
+
938
+
939
+
940
+
941
+ <h4 class="name" id="confirmedPrivateTransfer"><span class="type-signature"></span>confirmedPrivateTransfer<span class="signature">(receiver, vendorId, serviceNumber, data, options, next)</span><span class="type-signature"></span></h4>
942
+
943
+
944
+
945
+
946
+
947
+
948
+ <dl class="details">
949
+
950
+
951
+ <dt class="tag-source">Source:</dt>
952
+ <dd class="tag-source"><ul class="dummy"><li>
953
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1403">line 1403</a>
954
+ </li></ul></dd>
955
+
956
+
957
+
958
+
959
+
960
+
961
+
962
+
963
+
964
+
965
+
966
+
967
+
968
+
969
+
970
+
971
+
972
+
973
+
974
+
975
+
976
+
977
+
978
+
979
+
980
+
981
+
982
+
983
+
984
+
985
+
986
+ </dl>
987
+
988
+
989
+
990
+
991
+
992
+
993
+
994
+
995
+
996
+
997
+
998
+
999
+
1000
+
1001
+
1002
+ <h5>Parameters:</h5>
1003
+
1004
+
1005
+ <table class="params">
1006
+ <thead>
1007
+ <tr>
1008
+
1009
+ <th>Name</th>
1010
+
1011
+
1012
+ <th>Type</th>
1013
+
1014
+
1015
+
1016
+
1017
+
1018
+ <th class="last">Description</th>
1019
+ </tr>
1020
+ </thead>
1021
+
1022
+ <tbody>
1023
+
1024
+
1025
+ <tr>
1026
+
1027
+ <td class="name"><code>receiver</code></td>
1028
+
1029
+
1030
+ <td class="type">
1031
+
1032
+ </td>
1033
+
1034
+
1035
+
1036
+
1037
+
1038
+ <td class="description last"></td>
1039
+ </tr>
1040
+
1041
+
1042
+
1043
+ <tr>
1044
+
1045
+ <td class="name"><code>vendorId</code></td>
1046
+
1047
+
1048
+ <td class="type">
1049
+
1050
+ </td>
1051
+
1052
+
1053
+
1054
+
1055
+
1056
+ <td class="description last"></td>
1057
+ </tr>
1058
+
1059
+
1060
+
1061
+ <tr>
1062
+
1063
+ <td class="name"><code>serviceNumber</code></td>
1064
+
1065
+
1066
+ <td class="type">
1067
+
1068
+ </td>
1069
+
1070
+
1071
+
1072
+
1073
+
1074
+ <td class="description last"></td>
1075
+ </tr>
1076
+
1077
+
1078
+
1079
+ <tr>
1080
+
1081
+ <td class="name"><code>data</code></td>
1082
+
1083
+
1084
+ <td class="type">
1085
+
1086
+ </td>
1087
+
1088
+
1089
+
1090
+
1091
+
1092
+ <td class="description last"></td>
1093
+ </tr>
1094
+
1095
+
1096
+
1097
+ <tr>
1098
+
1099
+ <td class="name"><code>options</code></td>
1100
+
1101
+
1102
+ <td class="type">
1103
+
1104
+ </td>
1105
+
1106
+
1107
+
1108
+
1109
+
1110
+ <td class="description last"></td>
1111
+ </tr>
1112
+
1113
+
1114
+
1115
+ <tr>
1116
+
1117
+ <td class="name"><code>next</code></td>
1118
+
1119
+
1120
+ <td class="type">
1121
+
1122
+ </td>
1123
+
1124
+
1125
+
1126
+
1127
+
1128
+ <td class="description last"></td>
1129
+ </tr>
1130
+
1131
+
1132
+ </tbody>
1133
+ </table>
1134
+
1135
+
1136
+
1137
+
1138
+
1139
+
1140
+
1141
+
1142
+
1143
+
1144
+
1145
+
1146
+
1147
+
1148
+
1149
+
1150
+
1151
+
1152
+
1153
+
1154
+
1155
+ <h4 class="name" id="createObject"><span class="type-signature"></span>createObject<span class="signature">(receiver, objectId, values, options, next)</span><span class="type-signature"></span></h4>
1156
+
1157
+
1158
+
1159
+
1160
+
1161
+
1162
+ <dl class="details">
1163
+
1164
+
1165
+ <dt class="tag-source">Source:</dt>
1166
+ <dd class="tag-source"><ul class="dummy"><li>
1167
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1198">line 1198</a>
1168
+ </li></ul></dd>
1169
+
1170
+
1171
+
1172
+
1173
+
1174
+
1175
+
1176
+
1177
+
1178
+
1179
+
1180
+
1181
+
1182
+
1183
+
1184
+
1185
+
1186
+
1187
+
1188
+
1189
+
1190
+
1191
+
1192
+
1193
+
1194
+
1195
+
1196
+
1197
+
1198
+
1199
+
1200
+ </dl>
1201
+
1202
+
1203
+
1204
+
1205
+
1206
+
1207
+
1208
+
1209
+
1210
+
1211
+
1212
+
1213
+
1214
+
1215
+
1216
+ <h5>Parameters:</h5>
1217
+
1218
+
1219
+ <table class="params">
1220
+ <thead>
1221
+ <tr>
1222
+
1223
+ <th>Name</th>
1224
+
1225
+
1226
+ <th>Type</th>
1227
+
1228
+
1229
+
1230
+
1231
+
1232
+ <th class="last">Description</th>
1233
+ </tr>
1234
+ </thead>
1235
+
1236
+ <tbody>
1237
+
1238
+
1239
+ <tr>
1240
+
1241
+ <td class="name"><code>receiver</code></td>
1242
+
1243
+
1244
+ <td class="type">
1245
+
1246
+ </td>
1247
+
1248
+
1249
+
1250
+
1251
+
1252
+ <td class="description last"></td>
1253
+ </tr>
1254
+
1255
+
1256
+
1257
+ <tr>
1258
+
1259
+ <td class="name"><code>objectId</code></td>
1260
+
1261
+
1262
+ <td class="type">
1263
+
1264
+ </td>
1265
+
1266
+
1267
+
1268
+
1269
+
1270
+ <td class="description last"></td>
1271
+ </tr>
1272
+
1273
+
1274
+
1275
+ <tr>
1276
+
1277
+ <td class="name"><code>values</code></td>
1278
+
1279
+
1280
+ <td class="type">
1281
+
1282
+ </td>
1283
+
1284
+
1285
+
1286
+
1287
+
1288
+ <td class="description last"></td>
1289
+ </tr>
1290
+
1291
+
1292
+
1293
+ <tr>
1294
+
1295
+ <td class="name"><code>options</code></td>
1296
+
1297
+
1298
+ <td class="type">
1299
+
1300
+ </td>
1301
+
1302
+
1303
+
1304
+
1305
+
1306
+ <td class="description last"></td>
1307
+ </tr>
1308
+
1309
+
1310
+
1311
+ <tr>
1312
+
1313
+ <td class="name"><code>next</code></td>
1314
+
1315
+
1316
+ <td class="type">
1317
+
1318
+ </td>
1319
+
1320
+
1321
+
1322
+
1323
+
1324
+ <td class="description last"></td>
1325
+ </tr>
1326
+
1327
+
1328
+ </tbody>
1329
+ </table>
1330
+
1331
+
1332
+
1333
+
1334
+
1335
+
1336
+
1337
+
1338
+
1339
+
1340
+
1341
+
1342
+
1343
+
1344
+
1345
+
1346
+
1347
+
1348
+
1349
+
1350
+
1351
+ <h4 class="name" id="deleteObject"><span class="type-signature"></span>deleteObject<span class="signature">(receiver, objectId, options, next)</span><span class="type-signature"></span></h4>
1352
+
1353
+
1354
+
1355
+
1356
+
1357
+
1358
+ <dl class="details">
1359
+
1360
+
1361
+ <dt class="tag-source">Source:</dt>
1362
+ <dd class="tag-source"><ul class="dummy"><li>
1363
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1225">line 1225</a>
1364
+ </li></ul></dd>
1365
+
1366
+
1367
+
1368
+
1369
+
1370
+
1371
+
1372
+
1373
+
1374
+
1375
+
1376
+
1377
+
1378
+
1379
+
1380
+
1381
+
1382
+
1383
+
1384
+
1385
+
1386
+
1387
+
1388
+
1389
+
1390
+
1391
+
1392
+
1393
+
1394
+
1395
+
1396
+ </dl>
1397
+
1398
+
1399
+
1400
+
1401
+
1402
+
1403
+
1404
+
1405
+
1406
+
1407
+
1408
+
1409
+
1410
+
1411
+
1412
+ <h5>Parameters:</h5>
1413
+
1414
+
1415
+ <table class="params">
1416
+ <thead>
1417
+ <tr>
1418
+
1419
+ <th>Name</th>
1420
+
1421
+
1422
+ <th>Type</th>
1423
+
1424
+
1425
+
1426
+
1427
+
1428
+ <th class="last">Description</th>
1429
+ </tr>
1430
+ </thead>
1431
+
1432
+ <tbody>
1433
+
1434
+
1435
+ <tr>
1436
+
1437
+ <td class="name"><code>receiver</code></td>
1438
+
1439
+
1440
+ <td class="type">
1441
+
1442
+ </td>
1443
+
1444
+
1445
+
1446
+
1447
+
1448
+ <td class="description last"></td>
1449
+ </tr>
1450
+
1451
+
1452
+
1453
+ <tr>
1454
+
1455
+ <td class="name"><code>objectId</code></td>
1456
+
1457
+
1458
+ <td class="type">
1459
+
1460
+ </td>
1461
+
1462
+
1463
+
1464
+
1465
+
1466
+ <td class="description last"></td>
1467
+ </tr>
1468
+
1469
+
1470
+
1471
+ <tr>
1472
+
1473
+ <td class="name"><code>options</code></td>
1474
+
1475
+
1476
+ <td class="type">
1477
+
1478
+ </td>
1479
+
1480
+
1481
+
1482
+
1483
+
1484
+ <td class="description last"></td>
1485
+ </tr>
1486
+
1487
+
1488
+
1489
+ <tr>
1490
+
1491
+ <td class="name"><code>next</code></td>
1492
+
1493
+
1494
+ <td class="type">
1495
+
1496
+ </td>
1497
+
1498
+
1499
+
1500
+
1501
+
1502
+ <td class="description last"></td>
1503
+ </tr>
1504
+
1505
+
1506
+ </tbody>
1507
+ </table>
1508
+
1509
+
1510
+
1511
+
1512
+
1513
+
1514
+
1515
+
1516
+
1517
+
1518
+
1519
+
1520
+
1521
+
1522
+
1523
+
1524
+
1525
+
1526
+
1527
+
1528
+
1529
+ <h4 class="name" id="errorResponse"><span class="type-signature"></span>errorResponse<span class="signature">(receiver, service, invokeId, errorClass, errorCode)</span><span class="type-signature"></span></h4>
1530
+
1531
+
1532
+
1533
+
1534
+
1535
+
1536
+ <dl class="details">
1537
+
1538
+
1539
+ <dt class="tag-source">Source:</dt>
1540
+ <dd class="tag-source"><ul class="dummy"><li>
1541
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1587">line 1587</a>
1542
+ </li></ul></dd>
1543
+
1544
+
1545
+
1546
+
1547
+
1548
+
1549
+
1550
+
1551
+
1552
+
1553
+
1554
+
1555
+
1556
+
1557
+
1558
+
1559
+
1560
+
1561
+
1562
+
1563
+
1564
+
1565
+
1566
+
1567
+
1568
+
1569
+
1570
+
1571
+
1572
+
1573
+
1574
+ </dl>
1575
+
1576
+
1577
+
1578
+
1579
+
1580
+
1581
+
1582
+
1583
+
1584
+
1585
+
1586
+
1587
+
1588
+
1589
+
1590
+ <h5>Parameters:</h5>
1591
+
1592
+
1593
+ <table class="params">
1594
+ <thead>
1595
+ <tr>
1596
+
1597
+ <th>Name</th>
1598
+
1599
+
1600
+ <th>Type</th>
1601
+
1602
+
1603
+
1604
+
1605
+
1606
+ <th class="last">Description</th>
1607
+ </tr>
1608
+ </thead>
1609
+
1610
+ <tbody>
1611
+
1612
+
1613
+ <tr>
1614
+
1615
+ <td class="name"><code>receiver</code></td>
1616
+
1617
+
1618
+ <td class="type">
1619
+
1620
+ </td>
1621
+
1622
+
1623
+
1624
+
1625
+
1626
+ <td class="description last"></td>
1627
+ </tr>
1628
+
1629
+
1630
+
1631
+ <tr>
1632
+
1633
+ <td class="name"><code>service</code></td>
1634
+
1635
+
1636
+ <td class="type">
1637
+
1638
+ </td>
1639
+
1640
+
1641
+
1642
+
1643
+
1644
+ <td class="description last"></td>
1645
+ </tr>
1646
+
1647
+
1648
+
1649
+ <tr>
1650
+
1651
+ <td class="name"><code>invokeId</code></td>
1652
+
1653
+
1654
+ <td class="type">
1655
+
1656
+ </td>
1657
+
1658
+
1659
+
1660
+
1661
+
1662
+ <td class="description last"></td>
1663
+ </tr>
1664
+
1665
+
1666
+
1667
+ <tr>
1668
+
1669
+ <td class="name"><code>errorClass</code></td>
1670
+
1671
+
1672
+ <td class="type">
1673
+
1674
+ </td>
1675
+
1676
+
1677
+
1678
+
1679
+
1680
+ <td class="description last"></td>
1681
+ </tr>
1682
+
1683
+
1684
+
1685
+ <tr>
1686
+
1687
+ <td class="name"><code>errorCode</code></td>
1688
+
1689
+
1690
+ <td class="type">
1691
+
1692
+ </td>
1693
+
1694
+
1695
+
1696
+
1697
+
1698
+ <td class="description last"></td>
1699
+ </tr>
1700
+
1701
+
1702
+ </tbody>
1703
+ </table>
1704
+
1705
+
1706
+
1707
+
1708
+
1709
+
1710
+
1711
+
1712
+
1713
+
1714
+
1715
+
1716
+
1717
+
1718
+
1719
+
1720
+
1721
+
1722
+
1723
+
1724
+
1725
+ <h4 class="name" id="getAlarmSummary"><span class="type-signature"></span>getAlarmSummary<span class="signature">(receiver, options, next)</span><span class="type-signature"></span></h4>
1726
+
1727
+
1728
+
1729
+
1730
+
1731
+
1732
+ <dl class="details">
1733
+
1734
+
1735
+ <dt class="tag-source">Source:</dt>
1736
+ <dd class="tag-source"><ul class="dummy"><li>
1737
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1309">line 1309</a>
1738
+ </li></ul></dd>
1739
+
1740
+
1741
+
1742
+
1743
+
1744
+
1745
+
1746
+
1747
+
1748
+
1749
+
1750
+
1751
+
1752
+
1753
+
1754
+
1755
+
1756
+
1757
+
1758
+
1759
+
1760
+
1761
+
1762
+
1763
+
1764
+
1765
+
1766
+
1767
+
1768
+
1769
+
1770
+ </dl>
1771
+
1772
+
1773
+
1774
+
1775
+
1776
+
1777
+
1778
+
1779
+
1780
+
1781
+
1782
+
1783
+
1784
+
1785
+
1786
+ <h5>Parameters:</h5>
1787
+
1788
+
1789
+ <table class="params">
1790
+ <thead>
1791
+ <tr>
1792
+
1793
+ <th>Name</th>
1794
+
1795
+
1796
+ <th>Type</th>
1797
+
1798
+
1799
+
1800
+
1801
+
1802
+ <th class="last">Description</th>
1803
+ </tr>
1804
+ </thead>
1805
+
1806
+ <tbody>
1807
+
1808
+
1809
+ <tr>
1810
+
1811
+ <td class="name"><code>receiver</code></td>
1812
+
1813
+
1814
+ <td class="type">
1815
+
1816
+ </td>
1817
+
1818
+
1819
+
1820
+
1821
+
1822
+ <td class="description last"></td>
1823
+ </tr>
1824
+
1825
+
1826
+
1827
+ <tr>
1828
+
1829
+ <td class="name"><code>options</code></td>
1830
+
1831
+
1832
+ <td class="type">
1833
+
1834
+ </td>
1835
+
1836
+
1837
+
1838
+
1839
+
1840
+ <td class="description last"></td>
1841
+ </tr>
1842
+
1843
+
1844
+
1845
+ <tr>
1846
+
1847
+ <td class="name"><code>next</code></td>
1848
+
1849
+
1850
+ <td class="type">
1851
+
1852
+ </td>
1853
+
1854
+
1855
+
1856
+
1857
+
1858
+ <td class="description last"></td>
1859
+ </tr>
1860
+
1861
+
1862
+ </tbody>
1863
+ </table>
1864
+
1865
+
1866
+
1867
+
1868
+
1869
+
1870
+
1871
+
1872
+
1873
+
1874
+
1875
+
1876
+
1877
+
1878
+
1879
+
1880
+
1881
+
1882
+
1883
+
1884
+
1885
+ <h4 class="name" id="getEnrollmentSummary"><span class="type-signature"></span>getEnrollmentSummary<span class="signature">(receiver, acknowledgmentFilter, options, next)</span><span class="type-signature"></span></h4>
1886
+
1887
+
1888
+
1889
+
1890
+
1891
+
1892
+ <dl class="details">
1893
+
1894
+
1895
+ <dt class="tag-source">Source:</dt>
1896
+ <dd class="tag-source"><ul class="dummy"><li>
1897
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1445">line 1445</a>
1898
+ </li></ul></dd>
1899
+
1900
+
1901
+
1902
+
1903
+
1904
+
1905
+
1906
+
1907
+
1908
+
1909
+
1910
+
1911
+
1912
+
1913
+
1914
+
1915
+
1916
+
1917
+
1918
+
1919
+
1920
+
1921
+
1922
+
1923
+
1924
+
1925
+
1926
+
1927
+
1928
+
1929
+
1930
+ </dl>
1931
+
1932
+
1933
+
1934
+
1935
+
1936
+
1937
+
1938
+
1939
+
1940
+
1941
+
1942
+
1943
+
1944
+
1945
+
1946
+ <h5>Parameters:</h5>
1947
+
1948
+
1949
+ <table class="params">
1950
+ <thead>
1951
+ <tr>
1952
+
1953
+ <th>Name</th>
1954
+
1955
+
1956
+ <th>Type</th>
1957
+
1958
+
1959
+
1960
+
1961
+
1962
+ <th class="last">Description</th>
1963
+ </tr>
1964
+ </thead>
1965
+
1966
+ <tbody>
1967
+
1968
+
1969
+ <tr>
1970
+
1971
+ <td class="name"><code>receiver</code></td>
1972
+
1973
+
1974
+ <td class="type">
1975
+
1976
+ </td>
1977
+
1978
+
1979
+
1980
+
1981
+
1982
+ <td class="description last"></td>
1983
+ </tr>
1984
+
1985
+
1986
+
1987
+ <tr>
1988
+
1989
+ <td class="name"><code>acknowledgmentFilter</code></td>
1990
+
1991
+
1992
+ <td class="type">
1993
+
1994
+ </td>
1995
+
1996
+
1997
+
1998
+
1999
+
2000
+ <td class="description last"></td>
2001
+ </tr>
2002
+
2003
+
2004
+
2005
+ <tr>
2006
+
2007
+ <td class="name"><code>options</code></td>
2008
+
2009
+
2010
+ <td class="type">
2011
+
2012
+ </td>
2013
+
2014
+
2015
+
2016
+
2017
+
2018
+ <td class="description last"></td>
2019
+ </tr>
2020
+
2021
+
2022
+
2023
+ <tr>
2024
+
2025
+ <td class="name"><code>next</code></td>
2026
+
2027
+
2028
+ <td class="type">
2029
+
2030
+ </td>
2031
+
2032
+
2033
+
2034
+
2035
+
2036
+ <td class="description last"></td>
2037
+ </tr>
2038
+
2039
+
2040
+ </tbody>
2041
+ </table>
2042
+
2043
+
2044
+
2045
+
2046
+
2047
+
2048
+
2049
+
2050
+
2051
+
2052
+
2053
+
2054
+
2055
+
2056
+
2057
+
2058
+
2059
+
2060
+
2061
+
2062
+
2063
+ <h4 class="name" id="getEventInformation"><span class="type-signature"></span>getEventInformation<span class="signature">(receiver, objectId, options, next)</span><span class="type-signature"></span></h4>
2064
+
2065
+
2066
+
2067
+
2068
+
2069
+
2070
+ <dl class="details">
2071
+
2072
+
2073
+ <dt class="tag-source">Source:</dt>
2074
+ <dd class="tag-source"><ul class="dummy"><li>
2075
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1339">line 1339</a>
2076
+ </li></ul></dd>
2077
+
2078
+
2079
+
2080
+
2081
+
2082
+
2083
+
2084
+
2085
+
2086
+
2087
+
2088
+
2089
+
2090
+
2091
+
2092
+
2093
+
2094
+
2095
+
2096
+
2097
+
2098
+
2099
+
2100
+
2101
+
2102
+
2103
+
2104
+
2105
+
2106
+
2107
+
2108
+ </dl>
2109
+
2110
+
2111
+
2112
+
2113
+
2114
+
2115
+
2116
+
2117
+
2118
+
2119
+
2120
+
2121
+
2122
+
2123
+
2124
+ <h5>Parameters:</h5>
2125
+
2126
+
2127
+ <table class="params">
2128
+ <thead>
2129
+ <tr>
2130
+
2131
+ <th>Name</th>
2132
+
2133
+
2134
+ <th>Type</th>
2135
+
2136
+
2137
+
2138
+
2139
+
2140
+ <th class="last">Description</th>
2141
+ </tr>
2142
+ </thead>
2143
+
2144
+ <tbody>
2145
+
2146
+
2147
+ <tr>
2148
+
2149
+ <td class="name"><code>receiver</code></td>
2150
+
2151
+
2152
+ <td class="type">
2153
+
2154
+ </td>
2155
+
2156
+
2157
+
2158
+
2159
+
2160
+ <td class="description last"></td>
2161
+ </tr>
2162
+
2163
+
2164
+
2165
+ <tr>
2166
+
2167
+ <td class="name"><code>objectId</code></td>
2168
+
2169
+
2170
+ <td class="type">
2171
+
2172
+ </td>
2173
+
2174
+
2175
+
2176
+
2177
+
2178
+ <td class="description last"></td>
2179
+ </tr>
2180
+
2181
+
2182
+
2183
+ <tr>
2184
+
2185
+ <td class="name"><code>options</code></td>
2186
+
2187
+
2188
+ <td class="type">
2189
+
2190
+ </td>
2191
+
2192
+
2193
+
2194
+
2195
+
2196
+ <td class="description last"></td>
2197
+ </tr>
2198
+
2199
+
2200
+
2201
+ <tr>
2202
+
2203
+ <td class="name"><code>next</code></td>
2204
+
2205
+
2206
+ <td class="type">
2207
+
2208
+ </td>
2209
+
2210
+
2211
+
2212
+
2213
+
2214
+ <td class="description last"></td>
2215
+ </tr>
2216
+
2217
+
2218
+ </tbody>
2219
+ </table>
2220
+
2221
+
2222
+
2223
+
2224
+
2225
+
2226
+
2227
+
2228
+
2229
+
2230
+
2231
+
2232
+
2233
+
2234
+
2235
+
2236
+
2237
+
2238
+
2239
+
2240
+
2241
+ <h4 class="name" id="iHaveResponse"><span class="type-signature"></span>iHaveResponse<span class="signature">(receiver, deviceId, objectId, objectName)</span><span class="type-signature"></span></h4>
2242
+
2243
+
2244
+
2245
+
2246
+
2247
+
2248
+ <dl class="details">
2249
+
2250
+
2251
+ <dt class="tag-source">Source:</dt>
2252
+ <dd class="tag-source"><ul class="dummy"><li>
2253
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1558">line 1558</a>
2254
+ </li></ul></dd>
2255
+
2256
+
2257
+
2258
+
2259
+
2260
+
2261
+
2262
+
2263
+
2264
+
2265
+
2266
+
2267
+
2268
+
2269
+
2270
+
2271
+
2272
+
2273
+
2274
+
2275
+
2276
+
2277
+
2278
+
2279
+
2280
+
2281
+
2282
+
2283
+
2284
+
2285
+
2286
+ </dl>
2287
+
2288
+
2289
+
2290
+
2291
+
2292
+
2293
+
2294
+
2295
+
2296
+
2297
+
2298
+
2299
+
2300
+
2301
+
2302
+ <h5>Parameters:</h5>
2303
+
2304
+
2305
+ <table class="params">
2306
+ <thead>
2307
+ <tr>
2308
+
2309
+ <th>Name</th>
2310
+
2311
+
2312
+ <th>Type</th>
2313
+
2314
+
2315
+
2316
+
2317
+
2318
+ <th class="last">Description</th>
2319
+ </tr>
2320
+ </thead>
2321
+
2322
+ <tbody>
2323
+
2324
+
2325
+ <tr>
2326
+
2327
+ <td class="name"><code>receiver</code></td>
2328
+
2329
+
2330
+ <td class="type">
2331
+
2332
+ </td>
2333
+
2334
+
2335
+
2336
+
2337
+
2338
+ <td class="description last"></td>
2339
+ </tr>
2340
+
2341
+
2342
+
2343
+ <tr>
2344
+
2345
+ <td class="name"><code>deviceId</code></td>
2346
+
2347
+
2348
+ <td class="type">
2349
+
2350
+ </td>
2351
+
2352
+
2353
+
2354
+
2355
+
2356
+ <td class="description last"></td>
2357
+ </tr>
2358
+
2359
+
2360
+
2361
+ <tr>
2362
+
2363
+ <td class="name"><code>objectId</code></td>
2364
+
2365
+
2366
+ <td class="type">
2367
+
2368
+ </td>
2369
+
2370
+
2371
+
2372
+
2373
+
2374
+ <td class="description last"></td>
2375
+ </tr>
2376
+
2377
+
2378
+
2379
+ <tr>
2380
+
2381
+ <td class="name"><code>objectName</code></td>
2382
+
2383
+
2384
+ <td class="type">
2385
+
2386
+ </td>
2387
+
2388
+
2389
+
2390
+
2391
+
2392
+ <td class="description last"></td>
2393
+ </tr>
2394
+
2395
+
2396
+ </tbody>
2397
+ </table>
2398
+
2399
+
2400
+
2401
+
2402
+
2403
+
2404
+
2405
+
2406
+
2407
+
2408
+
2409
+
2410
+
2411
+
2412
+
2413
+
2414
+
2415
+
2416
+
2417
+
2418
+
2419
+ <h4 class="name" id="readFile"><span class="type-signature"></span>readFile<span class="signature">(receiver, objectId, position, count, options, next)</span><span class="type-signature"></span></h4>
2420
+
2421
+
2422
+
2423
+
2424
+
2425
+
2426
+ <dl class="details">
2427
+
2428
+
2429
+ <dt class="tag-source">Source:</dt>
2430
+ <dd class="tag-source"><ul class="dummy"><li>
2431
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1023">line 1023</a>
2432
+ </li></ul></dd>
2433
+
2434
+
2435
+
2436
+
2437
+
2438
+
2439
+
2440
+
2441
+
2442
+
2443
+
2444
+
2445
+
2446
+
2447
+
2448
+
2449
+
2450
+
2451
+
2452
+
2453
+
2454
+
2455
+
2456
+
2457
+
2458
+
2459
+
2460
+
2461
+
2462
+
2463
+
2464
+ </dl>
2465
+
2466
+
2467
+
2468
+
2469
+
2470
+
2471
+
2472
+
2473
+
2474
+
2475
+
2476
+
2477
+
2478
+
2479
+
2480
+ <h5>Parameters:</h5>
2481
+
2482
+
2483
+ <table class="params">
2484
+ <thead>
2485
+ <tr>
2486
+
2487
+ <th>Name</th>
2488
+
2489
+
2490
+ <th>Type</th>
2491
+
2492
+
2493
+
2494
+
2495
+
2496
+ <th class="last">Description</th>
2497
+ </tr>
2498
+ </thead>
2499
+
2500
+ <tbody>
2501
+
2502
+
2503
+ <tr>
2504
+
2505
+ <td class="name"><code>receiver</code></td>
2506
+
2507
+
2508
+ <td class="type">
2509
+
2510
+ </td>
2511
+
2512
+
2513
+
2514
+
2515
+
2516
+ <td class="description last"></td>
2517
+ </tr>
2518
+
2519
+
2520
+
2521
+ <tr>
2522
+
2523
+ <td class="name"><code>objectId</code></td>
2524
+
2525
+
2526
+ <td class="type">
2527
+
2528
+ </td>
2529
+
2530
+
2531
+
2532
+
2533
+
2534
+ <td class="description last"></td>
2535
+ </tr>
2536
+
2537
+
2538
+
2539
+ <tr>
2540
+
2541
+ <td class="name"><code>position</code></td>
2542
+
2543
+
2544
+ <td class="type">
2545
+
2546
+ </td>
2547
+
2548
+
2549
+
2550
+
2551
+
2552
+ <td class="description last"></td>
2553
+ </tr>
2554
+
2555
+
2556
+
2557
+ <tr>
2558
+
2559
+ <td class="name"><code>count</code></td>
2560
+
2561
+
2562
+ <td class="type">
2563
+
2564
+ </td>
2565
+
2566
+
2567
+
2568
+
2569
+
2570
+ <td class="description last"></td>
2571
+ </tr>
2572
+
2573
+
2574
+
2575
+ <tr>
2576
+
2577
+ <td class="name"><code>options</code></td>
2578
+
2579
+
2580
+ <td class="type">
2581
+
2582
+ </td>
2583
+
2584
+
2585
+
2586
+
2587
+
2588
+ <td class="description last"></td>
2589
+ </tr>
2590
+
2591
+
2592
+
2593
+ <tr>
2594
+
2595
+ <td class="name"><code>next</code></td>
2596
+
2597
+
2598
+ <td class="type">
2599
+
2600
+ </td>
2601
+
2602
+
2603
+
2604
+
2605
+
2606
+ <td class="description last"></td>
2607
+ </tr>
2608
+
2609
+
2610
+ </tbody>
2611
+ </table>
2612
+
2613
+
2614
+
2615
+
2616
+
2617
+
2618
+
2619
+
2620
+
2621
+
2622
+
2623
+
2624
+
2625
+
2626
+
2627
+
2628
+
2629
+
2630
+
2631
+
2632
+
2633
+ <h4 class="name" id="readRange"><span class="type-signature"></span>readRange<span class="signature">(receiver, objectId, idxBegin, quantity, options, next)</span><span class="type-signature"></span></h4>
2634
+
2635
+
2636
+
2637
+
2638
+
2639
+
2640
+ <dl class="details">
2641
+
2642
+
2643
+ <dt class="tag-source">Source:</dt>
2644
+ <dd class="tag-source"><ul class="dummy"><li>
2645
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1056">line 1056</a>
2646
+ </li></ul></dd>
2647
+
2648
+
2649
+
2650
+
2651
+
2652
+
2653
+
2654
+
2655
+
2656
+
2657
+
2658
+
2659
+
2660
+
2661
+
2662
+
2663
+
2664
+
2665
+
2666
+
2667
+
2668
+
2669
+
2670
+
2671
+
2672
+
2673
+
2674
+
2675
+
2676
+
2677
+
2678
+ </dl>
2679
+
2680
+
2681
+
2682
+
2683
+
2684
+
2685
+
2686
+
2687
+
2688
+
2689
+
2690
+
2691
+
2692
+
2693
+
2694
+ <h5>Parameters:</h5>
2695
+
2696
+
2697
+ <table class="params">
2698
+ <thead>
2699
+ <tr>
2700
+
2701
+ <th>Name</th>
2702
+
2703
+
2704
+ <th>Type</th>
2705
+
2706
+
2707
+
2708
+
2709
+
2710
+ <th class="last">Description</th>
2711
+ </tr>
2712
+ </thead>
2713
+
2714
+ <tbody>
2715
+
2716
+
2717
+ <tr>
2718
+
2719
+ <td class="name"><code>receiver</code></td>
2720
+
2721
+
2722
+ <td class="type">
2723
+
2724
+ </td>
2725
+
2726
+
2727
+
2728
+
2729
+
2730
+ <td class="description last"></td>
2731
+ </tr>
2732
+
2733
+
2734
+
2735
+ <tr>
2736
+
2737
+ <td class="name"><code>objectId</code></td>
2738
+
2739
+
2740
+ <td class="type">
2741
+
2742
+ </td>
2743
+
2744
+
2745
+
2746
+
2747
+
2748
+ <td class="description last"></td>
2749
+ </tr>
2750
+
2751
+
2752
+
2753
+ <tr>
2754
+
2755
+ <td class="name"><code>idxBegin</code></td>
2756
+
2757
+
2758
+ <td class="type">
2759
+
2760
+ </td>
2761
+
2762
+
2763
+
2764
+
2765
+
2766
+ <td class="description last"></td>
2767
+ </tr>
2768
+
2769
+
2770
+
2771
+ <tr>
2772
+
2773
+ <td class="name"><code>quantity</code></td>
2774
+
2775
+
2776
+ <td class="type">
2777
+
2778
+ </td>
2779
+
2780
+
2781
+
2782
+
2783
+
2784
+ <td class="description last"></td>
2785
+ </tr>
2786
+
2787
+
2788
+
2789
+ <tr>
2790
+
2791
+ <td class="name"><code>options</code></td>
2792
+
2793
+
2794
+ <td class="type">
2795
+
2796
+ </td>
2797
+
2798
+
2799
+
2800
+
2801
+
2802
+ <td class="description last"></td>
2803
+ </tr>
2804
+
2805
+
2806
+
2807
+ <tr>
2808
+
2809
+ <td class="name"><code>next</code></td>
2810
+
2811
+
2812
+ <td class="type">
2813
+
2814
+ </td>
2815
+
2816
+
2817
+
2818
+
2819
+
2820
+ <td class="description last"></td>
2821
+ </tr>
2822
+
2823
+
2824
+ </tbody>
2825
+ </table>
2826
+
2827
+
2828
+
2829
+
2830
+
2831
+
2832
+
2833
+
2834
+
2835
+
2836
+
2837
+
2838
+
2839
+
2840
+
2841
+
2842
+
2843
+
2844
+
2845
+
2846
+
2847
+ <h4 class="name" id="removeListElement"><span class="type-signature"></span>removeListElement<span class="signature">(receiver, objectId, reference, values, options, next)</span><span class="type-signature"></span></h4>
2848
+
2849
+
2850
+
2851
+
2852
+
2853
+
2854
+ <dl class="details">
2855
+
2856
+
2857
+ <dt class="tag-source">Source:</dt>
2858
+ <dd class="tag-source"><ul class="dummy"><li>
2859
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1254">line 1254</a>
2860
+ </li></ul></dd>
2861
+
2862
+
2863
+
2864
+
2865
+
2866
+
2867
+
2868
+
2869
+
2870
+
2871
+
2872
+
2873
+
2874
+
2875
+
2876
+
2877
+
2878
+
2879
+
2880
+
2881
+
2882
+
2883
+
2884
+
2885
+
2886
+
2887
+
2888
+
2889
+
2890
+
2891
+
2892
+ </dl>
2893
+
2894
+
2895
+
2896
+
2897
+
2898
+
2899
+
2900
+
2901
+
2902
+
2903
+
2904
+
2905
+
2906
+
2907
+
2908
+ <h5>Parameters:</h5>
2909
+
2910
+
2911
+ <table class="params">
2912
+ <thead>
2913
+ <tr>
2914
+
2915
+ <th>Name</th>
2916
+
2917
+
2918
+ <th>Type</th>
2919
+
2920
+
2921
+
2922
+
2923
+
2924
+ <th class="last">Description</th>
2925
+ </tr>
2926
+ </thead>
2927
+
2928
+ <tbody>
2929
+
2930
+
2931
+ <tr>
2932
+
2933
+ <td class="name"><code>receiver</code></td>
2934
+
2935
+
2936
+ <td class="type">
2937
+
2938
+ </td>
2939
+
2940
+
2941
+
2942
+
2943
+
2944
+ <td class="description last"></td>
2945
+ </tr>
2946
+
2947
+
2948
+
2949
+ <tr>
2950
+
2951
+ <td class="name"><code>objectId</code></td>
2952
+
2953
+
2954
+ <td class="type">
2955
+
2956
+ </td>
2957
+
2958
+
2959
+
2960
+
2961
+
2962
+ <td class="description last"></td>
2963
+ </tr>
2964
+
2965
+
2966
+
2967
+ <tr>
2968
+
2969
+ <td class="name"><code>reference</code></td>
2970
+
2971
+
2972
+ <td class="type">
2973
+
2974
+ </td>
2975
+
2976
+
2977
+
2978
+
2979
+
2980
+ <td class="description last"></td>
2981
+ </tr>
2982
+
2983
+
2984
+
2985
+ <tr>
2986
+
2987
+ <td class="name"><code>values</code></td>
2988
+
2989
+
2990
+ <td class="type">
2991
+
2992
+ </td>
2993
+
2994
+
2995
+
2996
+
2997
+
2998
+ <td class="description last"></td>
2999
+ </tr>
3000
+
3001
+
3002
+
3003
+ <tr>
3004
+
3005
+ <td class="name"><code>options</code></td>
3006
+
3007
+
3008
+ <td class="type">
3009
+
3010
+ </td>
3011
+
3012
+
3013
+
3014
+
3015
+
3016
+ <td class="description last"></td>
3017
+ </tr>
3018
+
3019
+
3020
+
3021
+ <tr>
3022
+
3023
+ <td class="name"><code>next</code></td>
3024
+
3025
+
3026
+ <td class="type">
3027
+
3028
+ </td>
3029
+
3030
+
3031
+
3032
+
3033
+
3034
+ <td class="description last"></td>
3035
+ </tr>
3036
+
3037
+
3038
+ </tbody>
3039
+ </table>
3040
+
3041
+
3042
+
3043
+
3044
+
3045
+
3046
+
3047
+
3048
+
3049
+
3050
+
3051
+
3052
+
3053
+
3054
+
3055
+
3056
+
3057
+
3058
+
3059
+
3060
+
3061
+ <h4 class="name" id="sendBvlc"><span class="type-signature"></span>sendBvlc<span class="signature">(receiver, buffer)</span><span class="type-signature"></span></h4>
3062
+
3063
+
3064
+
3065
+
3066
+
3067
+
3068
+ <dl class="details">
3069
+
3070
+
3071
+ <dt class="tag-source">Source:</dt>
3072
+ <dd class="tag-source"><ul class="dummy"><li>
3073
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1602">line 1602</a>
3074
+ </li></ul></dd>
3075
+
3076
+
3077
+
3078
+
3079
+
3080
+
3081
+
3082
+
3083
+
3084
+
3085
+
3086
+
3087
+
3088
+
3089
+
3090
+
3091
+
3092
+
3093
+
3094
+
3095
+
3096
+
3097
+
3098
+
3099
+
3100
+
3101
+
3102
+
3103
+
3104
+
3105
+
3106
+ </dl>
3107
+
3108
+
3109
+
3110
+
3111
+
3112
+
3113
+
3114
+
3115
+
3116
+
3117
+
3118
+
3119
+
3120
+
3121
+
3122
+ <h5>Parameters:</h5>
3123
+
3124
+
3125
+ <table class="params">
3126
+ <thead>
3127
+ <tr>
3128
+
3129
+ <th>Name</th>
3130
+
3131
+
3132
+ <th>Type</th>
3133
+
3134
+
3135
+
3136
+
3137
+
3138
+ <th class="last">Description</th>
3139
+ </tr>
3140
+ </thead>
3141
+
3142
+ <tbody>
3143
+
3144
+
3145
+ <tr>
3146
+
3147
+ <td class="name"><code>receiver</code></td>
3148
+
3149
+
3150
+ <td class="type">
3151
+
3152
+ </td>
3153
+
3154
+
3155
+
3156
+
3157
+
3158
+ <td class="description last"></td>
3159
+ </tr>
3160
+
3161
+
3162
+
3163
+ <tr>
3164
+
3165
+ <td class="name"><code>buffer</code></td>
3166
+
3167
+
3168
+ <td class="type">
3169
+
3170
+ </td>
3171
+
3172
+
3173
+
3174
+
3175
+
3176
+ <td class="description last"></td>
3177
+ </tr>
3178
+
3179
+
3180
+ </tbody>
3181
+ </table>
3182
+
3183
+
3184
+
3185
+
3186
+
3187
+
3188
+
3189
+
3190
+
3191
+
3192
+
3193
+
3194
+
3195
+
3196
+
3197
+
3198
+
3199
+
3200
+
3201
+
3202
+
3203
+ <h4 class="name" id="simpleAckResponse"><span class="type-signature"></span>simpleAckResponse<span class="signature">(receiver, service, invokeId)</span><span class="type-signature"></span></h4>
3204
+
3205
+
3206
+
3207
+
3208
+
3209
+
3210
+ <dl class="details">
3211
+
3212
+
3213
+ <dt class="tag-source">Source:</dt>
3214
+ <dd class="tag-source"><ul class="dummy"><li>
3215
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1572">line 1572</a>
3216
+ </li></ul></dd>
3217
+
3218
+
3219
+
3220
+
3221
+
3222
+
3223
+
3224
+
3225
+
3226
+
3227
+
3228
+
3229
+
3230
+
3231
+
3232
+
3233
+
3234
+
3235
+
3236
+
3237
+
3238
+
3239
+
3240
+
3241
+
3242
+
3243
+
3244
+
3245
+
3246
+
3247
+
3248
+ </dl>
3249
+
3250
+
3251
+
3252
+
3253
+
3254
+
3255
+
3256
+
3257
+
3258
+
3259
+
3260
+
3261
+
3262
+
3263
+
3264
+ <h5>Parameters:</h5>
3265
+
3266
+
3267
+ <table class="params">
3268
+ <thead>
3269
+ <tr>
3270
+
3271
+ <th>Name</th>
3272
+
3273
+
3274
+ <th>Type</th>
3275
+
3276
+
3277
+
3278
+
3279
+
3280
+ <th class="last">Description</th>
3281
+ </tr>
3282
+ </thead>
3283
+
3284
+ <tbody>
3285
+
3286
+
3287
+ <tr>
3288
+
3289
+ <td class="name"><code>receiver</code></td>
3290
+
3291
+
3292
+ <td class="type">
3293
+
3294
+ </td>
3295
+
3296
+
3297
+
3298
+
3299
+
3300
+ <td class="description last"></td>
3301
+ </tr>
3302
+
3303
+
3304
+
3305
+ <tr>
3306
+
3307
+ <td class="name"><code>service</code></td>
3308
+
3309
+
3310
+ <td class="type">
3311
+
3312
+ </td>
3313
+
3314
+
3315
+
3316
+
3317
+
3318
+ <td class="description last"></td>
3319
+ </tr>
3320
+
3321
+
3322
+
3323
+ <tr>
3324
+
3325
+ <td class="name"><code>invokeId</code></td>
3326
+
3327
+
3328
+ <td class="type">
3329
+
3330
+ </td>
3331
+
3332
+
3333
+
3334
+
3335
+
3336
+ <td class="description last"></td>
3337
+ </tr>
3338
+
3339
+
3340
+ </tbody>
3341
+ </table>
3342
+
3343
+
3344
+
3345
+
3346
+
3347
+
3348
+
3349
+
3350
+
3351
+
3352
+
3353
+
3354
+
3355
+
3356
+
3357
+
3358
+
3359
+
3360
+
3361
+
3362
+
3363
+ <h4 class="name" id="subscribeCov"><span class="type-signature"></span>subscribeCov<span class="signature">(receiver, objectId, subscribeId, cancel, issueConfirmedNotifications, lifetime, options, next)</span><span class="type-signature"></span></h4>
3364
+
3365
+
3366
+
3367
+
3368
+
3369
+
3370
+ <dl class="details">
3371
+
3372
+
3373
+ <dt class="tag-source">Source:</dt>
3374
+ <dd class="tag-source"><ul class="dummy"><li>
3375
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1091">line 1091</a>
3376
+ </li></ul></dd>
3377
+
3378
+
3379
+
3380
+
3381
+
3382
+
3383
+
3384
+
3385
+
3386
+
3387
+
3388
+
3389
+
3390
+
3391
+
3392
+
3393
+
3394
+
3395
+
3396
+
3397
+
3398
+
3399
+
3400
+
3401
+
3402
+
3403
+
3404
+
3405
+
3406
+
3407
+
3408
+ </dl>
3409
+
3410
+
3411
+
3412
+
3413
+
3414
+
3415
+
3416
+
3417
+
3418
+
3419
+
3420
+
3421
+
3422
+
3423
+
3424
+ <h5>Parameters:</h5>
3425
+
3426
+
3427
+ <table class="params">
3428
+ <thead>
3429
+ <tr>
3430
+
3431
+ <th>Name</th>
3432
+
3433
+
3434
+ <th>Type</th>
3435
+
3436
+
3437
+
3438
+
3439
+
3440
+ <th class="last">Description</th>
3441
+ </tr>
3442
+ </thead>
3443
+
3444
+ <tbody>
3445
+
3446
+
3447
+ <tr>
3448
+
3449
+ <td class="name"><code>receiver</code></td>
3450
+
3451
+
3452
+ <td class="type">
3453
+
3454
+ </td>
3455
+
3456
+
3457
+
3458
+
3459
+
3460
+ <td class="description last"></td>
3461
+ </tr>
3462
+
3463
+
3464
+
3465
+ <tr>
3466
+
3467
+ <td class="name"><code>objectId</code></td>
3468
+
3469
+
3470
+ <td class="type">
3471
+
3472
+ </td>
3473
+
3474
+
3475
+
3476
+
3477
+
3478
+ <td class="description last"></td>
3479
+ </tr>
3480
+
3481
+
3482
+
3483
+ <tr>
3484
+
3485
+ <td class="name"><code>subscribeId</code></td>
3486
+
3487
+
3488
+ <td class="type">
3489
+
3490
+ </td>
3491
+
3492
+
3493
+
3494
+
3495
+
3496
+ <td class="description last"></td>
3497
+ </tr>
3498
+
3499
+
3500
+
3501
+ <tr>
3502
+
3503
+ <td class="name"><code>cancel</code></td>
3504
+
3505
+
3506
+ <td class="type">
3507
+
3508
+ </td>
3509
+
3510
+
3511
+
3512
+
3513
+
3514
+ <td class="description last"></td>
3515
+ </tr>
3516
+
3517
+
3518
+
3519
+ <tr>
3520
+
3521
+ <td class="name"><code>issueConfirmedNotifications</code></td>
3522
+
3523
+
3524
+ <td class="type">
3525
+
3526
+ </td>
3527
+
3528
+
3529
+
3530
+
3531
+
3532
+ <td class="description last"></td>
3533
+ </tr>
3534
+
3535
+
3536
+
3537
+ <tr>
3538
+
3539
+ <td class="name"><code>lifetime</code></td>
3540
+
3541
+
3542
+ <td class="type">
3543
+
3544
+ </td>
3545
+
3546
+
3547
+
3548
+
3549
+
3550
+ <td class="description last"></td>
3551
+ </tr>
3552
+
3553
+
3554
+
3555
+ <tr>
3556
+
3557
+ <td class="name"><code>options</code></td>
3558
+
3559
+
3560
+ <td class="type">
3561
+
3562
+ </td>
3563
+
3564
+
3565
+
3566
+
3567
+
3568
+ <td class="description last"></td>
3569
+ </tr>
3570
+
3571
+
3572
+
3573
+ <tr>
3574
+
3575
+ <td class="name"><code>next</code></td>
3576
+
3577
+
3578
+ <td class="type">
3579
+
3580
+ </td>
3581
+
3582
+
3583
+
3584
+
3585
+
3586
+ <td class="description last"></td>
3587
+ </tr>
3588
+
3589
+
3590
+ </tbody>
3591
+ </table>
3592
+
3593
+
3594
+
3595
+
3596
+
3597
+
3598
+
3599
+
3600
+
3601
+
3602
+
3603
+
3604
+
3605
+
3606
+
3607
+
3608
+
3609
+
3610
+
3611
+
3612
+
3613
+ <h4 class="name" id="subscribeProperty"><span class="type-signature"></span>subscribeProperty<span class="signature">(receiver, objectId, monitoredProperty, subscribeId, cancel, issueConfirmedNotifications, options, next)</span><span class="type-signature"></span></h4>
3614
+
3615
+
3616
+
3617
+
3618
+
3619
+
3620
+ <dl class="details">
3621
+
3622
+
3623
+ <dt class="tag-source">Source:</dt>
3624
+ <dd class="tag-source"><ul class="dummy"><li>
3625
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1122">line 1122</a>
3626
+ </li></ul></dd>
3627
+
3628
+
3629
+
3630
+
3631
+
3632
+
3633
+
3634
+
3635
+
3636
+
3637
+
3638
+
3639
+
3640
+
3641
+
3642
+
3643
+
3644
+
3645
+
3646
+
3647
+
3648
+
3649
+
3650
+
3651
+
3652
+
3653
+
3654
+
3655
+
3656
+
3657
+
3658
+ </dl>
3659
+
3660
+
3661
+
3662
+
3663
+
3664
+
3665
+
3666
+
3667
+
3668
+
3669
+
3670
+
3671
+
3672
+
3673
+
3674
+ <h5>Parameters:</h5>
3675
+
3676
+
3677
+ <table class="params">
3678
+ <thead>
3679
+ <tr>
3680
+
3681
+ <th>Name</th>
3682
+
3683
+
3684
+ <th>Type</th>
3685
+
3686
+
3687
+
3688
+
3689
+
3690
+ <th class="last">Description</th>
3691
+ </tr>
3692
+ </thead>
3693
+
3694
+ <tbody>
3695
+
3696
+
3697
+ <tr>
3698
+
3699
+ <td class="name"><code>receiver</code></td>
3700
+
3701
+
3702
+ <td class="type">
3703
+
3704
+ </td>
3705
+
3706
+
3707
+
3708
+
3709
+
3710
+ <td class="description last"></td>
3711
+ </tr>
3712
+
3713
+
3714
+
3715
+ <tr>
3716
+
3717
+ <td class="name"><code>objectId</code></td>
3718
+
3719
+
3720
+ <td class="type">
3721
+
3722
+ </td>
3723
+
3724
+
3725
+
3726
+
3727
+
3728
+ <td class="description last"></td>
3729
+ </tr>
3730
+
3731
+
3732
+
3733
+ <tr>
3734
+
3735
+ <td class="name"><code>monitoredProperty</code></td>
3736
+
3737
+
3738
+ <td class="type">
3739
+
3740
+ </td>
3741
+
3742
+
3743
+
3744
+
3745
+
3746
+ <td class="description last"></td>
3747
+ </tr>
3748
+
3749
+
3750
+
3751
+ <tr>
3752
+
3753
+ <td class="name"><code>subscribeId</code></td>
3754
+
3755
+
3756
+ <td class="type">
3757
+
3758
+ </td>
3759
+
3760
+
3761
+
3762
+
3763
+
3764
+ <td class="description last"></td>
3765
+ </tr>
3766
+
3767
+
3768
+
3769
+ <tr>
3770
+
3771
+ <td class="name"><code>cancel</code></td>
3772
+
3773
+
3774
+ <td class="type">
3775
+
3776
+ </td>
3777
+
3778
+
3779
+
3780
+
3781
+
3782
+ <td class="description last"></td>
3783
+ </tr>
3784
+
3785
+
3786
+
3787
+ <tr>
3788
+
3789
+ <td class="name"><code>issueConfirmedNotifications</code></td>
3790
+
3791
+
3792
+ <td class="type">
3793
+
3794
+ </td>
3795
+
3796
+
3797
+
3798
+
3799
+
3800
+ <td class="description last"></td>
3801
+ </tr>
3802
+
3803
+
3804
+
3805
+ <tr>
3806
+
3807
+ <td class="name"><code>options</code></td>
3808
+
3809
+
3810
+ <td class="type">
3811
+
3812
+ </td>
3813
+
3814
+
3815
+
3816
+
3817
+
3818
+ <td class="description last"></td>
3819
+ </tr>
3820
+
3821
+
3822
+
3823
+ <tr>
3824
+
3825
+ <td class="name"><code>next</code></td>
3826
+
3827
+
3828
+ <td class="type">
3829
+
3830
+ </td>
3831
+
3832
+
3833
+
3834
+
3835
+
3836
+ <td class="description last"></td>
3837
+ </tr>
3838
+
3839
+
3840
+ </tbody>
3841
+ </table>
3842
+
3843
+
3844
+
3845
+
3846
+
3847
+
3848
+
3849
+
3850
+
3851
+
3852
+
3853
+
3854
+
3855
+
3856
+
3857
+
3858
+
3859
+
3860
+
3861
+
3862
+
3863
+ <h4 class="name" id="unconfirmedEventNotification"><span class="type-signature"></span>unconfirmedEventNotification<span class="signature">(receiver, eventNotification)</span><span class="type-signature"></span></h4>
3864
+
3865
+
3866
+
3867
+
3868
+
3869
+
3870
+ <dl class="details">
3871
+
3872
+
3873
+ <dt class="tag-source">Source:</dt>
3874
+ <dd class="tag-source"><ul class="dummy"><li>
3875
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1474">line 1474</a>
3876
+ </li></ul></dd>
3877
+
3878
+
3879
+
3880
+
3881
+
3882
+
3883
+
3884
+
3885
+
3886
+
3887
+
3888
+
3889
+
3890
+
3891
+
3892
+
3893
+
3894
+
3895
+
3896
+
3897
+
3898
+
3899
+
3900
+
3901
+
3902
+
3903
+
3904
+
3905
+
3906
+
3907
+
3908
+ </dl>
3909
+
3910
+
3911
+
3912
+
3913
+
3914
+
3915
+
3916
+
3917
+
3918
+
3919
+
3920
+
3921
+
3922
+
3923
+
3924
+ <h5>Parameters:</h5>
3925
+
3926
+
3927
+ <table class="params">
3928
+ <thead>
3929
+ <tr>
3930
+
3931
+ <th>Name</th>
3932
+
3933
+
3934
+ <th>Type</th>
3935
+
3936
+
3937
+
3938
+
3939
+
3940
+ <th class="last">Description</th>
3941
+ </tr>
3942
+ </thead>
3943
+
3944
+ <tbody>
3945
+
3946
+
3947
+ <tr>
3948
+
3949
+ <td class="name"><code>receiver</code></td>
3950
+
3951
+
3952
+ <td class="type">
3953
+
3954
+ </td>
3955
+
3956
+
3957
+
3958
+
3959
+
3960
+ <td class="description last"></td>
3961
+ </tr>
3962
+
3963
+
3964
+
3965
+ <tr>
3966
+
3967
+ <td class="name"><code>eventNotification</code></td>
3968
+
3969
+
3970
+ <td class="type">
3971
+
3972
+ </td>
3973
+
3974
+
3975
+
3976
+
3977
+
3978
+ <td class="description last"></td>
3979
+ </tr>
3980
+
3981
+
3982
+ </tbody>
3983
+ </table>
3984
+
3985
+
3986
+
3987
+
3988
+
3989
+
3990
+
3991
+
3992
+
3993
+
3994
+
3995
+
3996
+
3997
+
3998
+
3999
+
4000
+
4001
+
4002
+
4003
+
4004
+
4005
+ <h4 class="name" id="unconfirmedPrivateTransfer"><span class="type-signature"></span>unconfirmedPrivateTransfer<span class="signature">(receiver, vendorId, serviceNumber, data)</span><span class="type-signature"></span></h4>
4006
+
4007
+
4008
+
4009
+
4010
+
4011
+
4012
+ <dl class="details">
4013
+
4014
+
4015
+ <dt class="tag-source">Source:</dt>
4016
+ <dd class="tag-source"><ul class="dummy"><li>
4017
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line1430">line 1430</a>
4018
+ </li></ul></dd>
4019
+
4020
+
4021
+
4022
+
4023
+
4024
+
4025
+
4026
+
4027
+
4028
+
4029
+
4030
+
4031
+
4032
+
4033
+
4034
+
4035
+
4036
+
4037
+
4038
+
4039
+
4040
+
4041
+
4042
+
4043
+
4044
+
4045
+
4046
+
4047
+
4048
+
4049
+
4050
+ </dl>
4051
+
4052
+
4053
+
4054
+
4055
+
4056
+
4057
+
4058
+
4059
+
4060
+
4061
+
4062
+
4063
+
4064
+
4065
+
4066
+ <h5>Parameters:</h5>
4067
+
4068
+
4069
+ <table class="params">
4070
+ <thead>
4071
+ <tr>
4072
+
4073
+ <th>Name</th>
4074
+
4075
+
4076
+ <th>Type</th>
4077
+
4078
+
4079
+
4080
+
4081
+
4082
+ <th class="last">Description</th>
4083
+ </tr>
4084
+ </thead>
4085
+
4086
+ <tbody>
4087
+
4088
+
4089
+ <tr>
4090
+
4091
+ <td class="name"><code>receiver</code></td>
4092
+
4093
+
4094
+ <td class="type">
4095
+
4096
+ </td>
4097
+
4098
+
4099
+
4100
+
4101
+
4102
+ <td class="description last"></td>
4103
+ </tr>
4104
+
4105
+
4106
+
4107
+ <tr>
4108
+
4109
+ <td class="name"><code>vendorId</code></td>
4110
+
4111
+
4112
+ <td class="type">
4113
+
4114
+ </td>
4115
+
4116
+
4117
+
4118
+
4119
+
4120
+ <td class="description last"></td>
4121
+ </tr>
4122
+
4123
+
4124
+
4125
+ <tr>
4126
+
4127
+ <td class="name"><code>serviceNumber</code></td>
4128
+
4129
+
4130
+ <td class="type">
4131
+
4132
+ </td>
4133
+
4134
+
4135
+
4136
+
4137
+
4138
+ <td class="description last"></td>
4139
+ </tr>
4140
+
4141
+
4142
+
4143
+ <tr>
4144
+
4145
+ <td class="name"><code>data</code></td>
4146
+
4147
+
4148
+ <td class="type">
4149
+
4150
+ </td>
4151
+
4152
+
4153
+
4154
+
4155
+
4156
+ <td class="description last"></td>
4157
+ </tr>
4158
+
4159
+
4160
+ </tbody>
4161
+ </table>
4162
+
4163
+
4164
+
4165
+
4166
+
4167
+
4168
+
4169
+
4170
+
4171
+
4172
+
4173
+
4174
+
4175
+
4176
+
4177
+
4178
+
4179
+
4180
+
4181
+
4182
+
4183
+ <h4 class="name" id="writeFile"><span class="type-signature"></span>writeFile<span class="signature">(receiver, objectId, position, fileBuffer, options, next)</span><span class="type-signature"></span></h4>
4184
+
4185
+
4186
+
4187
+
4188
+
4189
+
4190
+ <dl class="details">
4191
+
4192
+
4193
+ <dt class="tag-source">Source:</dt>
4194
+ <dd class="tag-source"><ul class="dummy"><li>
4195
+ <a href="client.js.html">client.js</a>, <a href="client.js.html#line990">line 990</a>
4196
+ </li></ul></dd>
4197
+
4198
+
4199
+
4200
+
4201
+
4202
+
4203
+
4204
+
4205
+
4206
+
4207
+
4208
+
4209
+
4210
+
4211
+
4212
+
4213
+
4214
+
4215
+
4216
+
4217
+
4218
+
4219
+
4220
+
4221
+
4222
+
4223
+
4224
+
4225
+
4226
+
4227
+
4228
+ </dl>
4229
+
4230
+
4231
+
4232
+
4233
+
4234
+
4235
+
4236
+
4237
+
4238
+
4239
+
4240
+
4241
+
4242
+
4243
+
4244
+ <h5>Parameters:</h5>
4245
+
4246
+
4247
+ <table class="params">
4248
+ <thead>
4249
+ <tr>
4250
+
4251
+ <th>Name</th>
4252
+
4253
+
4254
+ <th>Type</th>
4255
+
4256
+
4257
+
4258
+
4259
+
4260
+ <th class="last">Description</th>
4261
+ </tr>
4262
+ </thead>
4263
+
4264
+ <tbody>
4265
+
4266
+
4267
+ <tr>
4268
+
4269
+ <td class="name"><code>receiver</code></td>
4270
+
4271
+
4272
+ <td class="type">
4273
+
4274
+ </td>
4275
+
4276
+
4277
+
4278
+
4279
+
4280
+ <td class="description last"></td>
4281
+ </tr>
4282
+
4283
+
4284
+
4285
+ <tr>
4286
+
4287
+ <td class="name"><code>objectId</code></td>
4288
+
4289
+
4290
+ <td class="type">
4291
+
4292
+ </td>
4293
+
4294
+
4295
+
4296
+
4297
+
4298
+ <td class="description last"></td>
4299
+ </tr>
4300
+
4301
+
4302
+
4303
+ <tr>
4304
+
4305
+ <td class="name"><code>position</code></td>
4306
+
4307
+
4308
+ <td class="type">
4309
+
4310
+ </td>
4311
+
4312
+
4313
+
4314
+
4315
+
4316
+ <td class="description last"></td>
4317
+ </tr>
4318
+
4319
+
4320
+
4321
+ <tr>
4322
+
4323
+ <td class="name"><code>fileBuffer</code></td>
4324
+
4325
+
4326
+ <td class="type">
4327
+
4328
+ </td>
4329
+
4330
+
4331
+
4332
+
4333
+
4334
+ <td class="description last"></td>
4335
+ </tr>
4336
+
4337
+
4338
+
4339
+ <tr>
4340
+
4341
+ <td class="name"><code>options</code></td>
4342
+
4343
+
4344
+ <td class="type">
4345
+
4346
+ </td>
4347
+
4348
+
4349
+
4350
+
4351
+
4352
+ <td class="description last"></td>
4353
+ </tr>
4354
+
4355
+
4356
+
4357
+ <tr>
4358
+
4359
+ <td class="name"><code>next</code></td>
4360
+
4361
+
4362
+ <td class="type">
4363
+
4364
+ </td>
4365
+
4366
+
4367
+
4368
+
4369
+
4370
+ <td class="description last"></td>
4371
+ </tr>
4372
+
4373
+
4374
+ </tbody>
4375
+ </table>
4376
+
4377
+
4378
+
4379
+
4380
+
4381
+
4382
+
4383
+
4384
+
4385
+
4386
+
4387
+
4388
+
4389
+
4390
+
4391
+
4392
+
4393
+
4394
+
4395
+
4396
+
4397
+
4398
+ </article>
4399
+
4400
+ </section>
4401
+
4402
+
4403
+
4404
+
4405
+
4406
+
4407
+ </div>
4408
+
4409
+ <br class="clear">
4410
+
4411
+ <footer>
4412
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Jun 02 2020 20:24:55 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/mochajs/mocha-docdash">@mocha/docdash</a> theme.
4413
+ </footer>
4414
+
4415
+ <script src="scripts/prettify/prettify.js"></script>
4416
+ <script src="scripts/prettify/lang-css.js"></script>
4417
+ <script>prettyPrint();</script>
4418
+ <script src="scripts/linenumber.js"></script>
4419
+
4420
+
4421
+ </body>
4422
+ </html>