protobufjs 3.6.0 → 3.8.2
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.
- package/bin/proto2js +16 -4
- package/bower.json +1 -1
- package/dist/ProtoBuf.js +645 -441
- package/dist/ProtoBuf.min.js +96 -96
- package/dist/ProtoBuf.min.js.gz +0 -0
- package/dist/ProtoBuf.min.map +2 -2
- package/dist/ProtoBuf.noparse.js +520 -357
- package/dist/ProtoBuf.noparse.min.js +68 -66
- package/dist/ProtoBuf.noparse.min.js.gz +0 -0
- package/dist/ProtoBuf.noparse.min.map +3 -3
- package/docs/ProtoBuf.Builder.Message.html +673 -135
- package/docs/ProtoBuf.Builder.Service.html +58 -19
- package/docs/ProtoBuf.Builder.html +374 -46
- package/docs/ProtoBuf.DotProto.Parser.html +58 -19
- package/docs/ProtoBuf.DotProto.Tokenizer.html +104 -19
- package/docs/ProtoBuf.DotProto.html +16 -10
- package/docs/ProtoBuf.Reflect.Enum.Value.html +207 -33
- package/docs/ProtoBuf.Reflect.Enum.html +318 -56
- package/docs/ProtoBuf.Reflect.Extension.html +53 -13
- package/docs/ProtoBuf.Reflect.Message.ExtensionField.html +450 -68
- package/docs/ProtoBuf.Reflect.Message.Field.html +454 -51
- package/docs/ProtoBuf.Reflect.Message.OneOf.html +1044 -0
- package/docs/ProtoBuf.Reflect.Message.html +378 -64
- package/docs/ProtoBuf.Reflect.Namespace.html +333 -51
- package/docs/ProtoBuf.Reflect.Service.Method.html +228 -35
- package/docs/ProtoBuf.Reflect.Service.RPCMethod.html +262 -41
- package/docs/ProtoBuf.Reflect.Service.html +318 -56
- package/docs/ProtoBuf.Reflect.T.html +210 -25
- package/docs/ProtoBuf.Reflect.html +17 -11
- package/docs/ProtoBuf.Util.html +59 -13
- package/docs/ProtoBuf.html +235 -67
- package/docs/ProtoBuf.js.html +648 -443
- package/docs/index.html +4 -2
- package/docs/styles/jsdoc-default.css +2 -2
- package/examples/protoify/.npmignore +2 -0
- package/examples/protoify/README.md +28 -0
- package/examples/protoify/index.js +147 -0
- package/examples/protoify/json.js +123 -0
- package/examples/protoify/json.json +123 -0
- package/examples/protoify/json.proto +30 -0
- package/examples/protoify/package.json +15 -0
- package/examples/protoify/test.js +56 -0
- package/examples/websocket/README.md +1 -0
- package/examples/websocket/package.json +1 -1
- package/externs/ProtoBuf.js +922 -922
- package/package.json +3 -3
- package/scripts/build.js +58 -58
- package/src/ProtoBuf/Builder/Message.js +107 -77
- package/src/ProtoBuf/Builder/Service.js +8 -5
- package/src/ProtoBuf/Builder.js +71 -37
- package/src/ProtoBuf/DotProto/Parser.js +108 -72
- package/src/ProtoBuf/DotProto/Tokenizer.js +17 -11
- package/src/ProtoBuf/Lang.js +1 -1
- package/src/ProtoBuf/Reflect/Enum/Value.js +3 -2
- package/src/ProtoBuf/Reflect/Enum.js +9 -5
- package/src/ProtoBuf/Reflect/Extension.js +4 -3
- package/src/ProtoBuf/Reflect/Message/ExtensionField.js +4 -3
- package/src/ProtoBuf/Reflect/Message/Field.js +45 -26
- package/src/ProtoBuf/Reflect/Message/OneOf.js +19 -0
- package/src/ProtoBuf/Reflect/Message.js +36 -19
- package/src/ProtoBuf/Reflect/Namespace.js +19 -15
- package/src/ProtoBuf/Reflect/Service/Method.js +9 -5
- package/src/ProtoBuf/Reflect/Service/RPCMethod.js +3 -2
- package/src/ProtoBuf/Reflect/Service.js +9 -5
- package/src/ProtoBuf/Reflect/T.js +20 -6
- package/src/ProtoBuf/Reflect.js +9 -0
- package/src/ProtoBuf/Util.js +132 -132
- package/src/ProtoBuf.js +15 -17
- package/src/google/protobuf/descriptor.json +33 -13
- package/tests/bench.txt +373 -373
- package/tests/complex.json +8 -4
- package/tests/custom-options.json +169 -169
- package/tests/extend.json +71 -71
- package/tests/nodeunit-browser/nodeunit.css +70 -70
- package/tests/nodeunit-browser/nodeunit.js +2108 -2108
- package/tests/oneof.proto +6 -0
- package/tests/options.json +32 -32
- package/tests/options.proto +2 -0
- package/tests/proto2js/Bar.json +46 -46
- package/tests/suite.js +83 -12
- package/.idea/.name +0 -1
- package/.idea/ProtoBuf.iml +0 -9
- package/.idea/dictionaries/Daniel.xml +0 -7
- package/.idea/encodings.xml +0 -5
- package/.idea/misc.xml +0 -5
- package/.idea/modules.xml +0 -9
- package/.idea/scopes/scope_settings.xml +0 -5
- package/.idea/vcs.xml +0 -7
- package/.idea/workspace.xml +0 -551
- package/NOTICE +0 -2
- package/sandbox/issue146/MyOptions.proto +0 -28
- package/sandbox/issue146/Sample.proto +0 -21
- package/sandbox/issue146/main.js +0 -3
- package/sandbox/issue147/enum.proto +0 -8
- package/sandbox/issue147/main.js +0 -3
- package/sandbox/issue42/innerextend.proto +0 -18
- package/sandbox/issue42/main.js +0 -8
- package/sandbox/issue42/outerextend.proto +0 -17
- package/v8.log +0 -3828
|
@@ -23,28 +23,31 @@
|
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
|
|
26
|
+
|
|
26
27
|
<section>
|
|
27
28
|
|
|
28
29
|
<header>
|
|
29
|
-
<h2>
|
|
30
|
-
<span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.Builder.html">.Builder</a>.</span>
|
|
31
|
-
|
|
32
|
-
Message
|
|
33
|
-
</h2>
|
|
34
30
|
|
|
35
|
-
<
|
|
31
|
+
<h2>
|
|
32
|
+
<span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.Builder.html">.Builder</a>.</span>
|
|
33
|
+
|
|
34
|
+
Message
|
|
35
|
+
</h2>
|
|
36
|
+
|
|
37
|
+
<div class="class-description"><p>Barebone of all runtime messages.</p></div>
|
|
38
|
+
|
|
36
39
|
|
|
37
40
|
</header>
|
|
38
41
|
|
|
39
42
|
<article>
|
|
40
43
|
<div class="container-overview">
|
|
41
44
|
|
|
42
|
-
|
|
43
|
-
|
|
44
45
|
|
|
45
46
|
<dt>
|
|
46
|
-
|
|
47
|
+
|
|
48
|
+
<h4 class="name" id="Message"><span class="type-signature"></span>new Message<span class="signature">(values, …var_args)</span><span class="type-signature"></span></h4>
|
|
47
49
|
|
|
50
|
+
|
|
48
51
|
|
|
49
52
|
</dt>
|
|
50
53
|
<dd>
|
|
@@ -60,6 +63,8 @@
|
|
|
60
63
|
|
|
61
64
|
|
|
62
65
|
|
|
66
|
+
|
|
67
|
+
|
|
63
68
|
<h5>Parameters:</h5>
|
|
64
69
|
|
|
65
70
|
|
|
@@ -156,7 +161,14 @@
|
|
|
156
161
|
|
|
157
162
|
|
|
158
163
|
|
|
164
|
+
|
|
165
|
+
|
|
159
166
|
<dl class="details">
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
160
172
|
|
|
161
173
|
|
|
162
174
|
|
|
@@ -178,7 +190,7 @@
|
|
|
178
190
|
|
|
179
191
|
<dt class="tag-source">Source:</dt>
|
|
180
192
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
181
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
193
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1692">line 1692</a>
|
|
182
194
|
</li></ul></dd>
|
|
183
195
|
|
|
184
196
|
|
|
@@ -241,8 +253,6 @@
|
|
|
241
253
|
|
|
242
254
|
|
|
243
255
|
|
|
244
|
-
|
|
245
|
-
|
|
246
256
|
|
|
247
257
|
|
|
248
258
|
|
|
@@ -277,74 +287,15 @@
|
|
|
277
287
|
|
|
278
288
|
|
|
279
289
|
|
|
280
|
-
<dl class="details">
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
290
|
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
<dt class="tag-source">Source:</dt>
|
|
301
|
-
<dd class="tag-source"><ul class="dummy"><li>
|
|
302
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2174">line 2174</a>
|
|
303
|
-
</li></ul></dd>
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
</dl>
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
</dd>
|
|
318
291
|
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
<dt>
|
|
322
|
-
<h4 class="name" id="$type"><span class="type-signature">(non-null) </span>$type<span class="type-signature"> :<a href="ProtoBuf.Reflect.Message.html">ProtoBuf.Reflect.Message</a></span></h4>
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
</dt>
|
|
326
|
-
<dd>
|
|
327
|
-
|
|
328
|
-
<div class="description">
|
|
329
|
-
<p>The message's reflection type.</p>
|
|
330
|
-
</div>
|
|
331
|
-
|
|
292
|
+
<dl class="details">
|
|
332
293
|
|
|
333
294
|
|
|
334
|
-
<h5>Type:</h5>
|
|
335
|
-
<ul>
|
|
336
|
-
<li>
|
|
337
|
-
|
|
338
|
-
<span class="param-type"><a href="ProtoBuf.Reflect.Message.html">ProtoBuf.Reflect.Message</a></span>
|
|
339
295
|
|
|
340
|
-
|
|
341
|
-
</li>
|
|
342
|
-
</ul>
|
|
343
296
|
|
|
344
297
|
|
|
345
298
|
|
|
346
|
-
<dl class="details">
|
|
347
|
-
|
|
348
299
|
|
|
349
300
|
|
|
350
301
|
|
|
@@ -365,7 +316,7 @@
|
|
|
365
316
|
|
|
366
317
|
<dt class="tag-source">Source:</dt>
|
|
367
318
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
368
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
319
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2275">line 2275</a>
|
|
369
320
|
</li></ul></dd>
|
|
370
321
|
|
|
371
322
|
|
|
@@ -409,7 +360,14 @@
|
|
|
409
360
|
|
|
410
361
|
|
|
411
362
|
|
|
363
|
+
|
|
364
|
+
|
|
412
365
|
<dl class="details">
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
413
371
|
|
|
414
372
|
|
|
415
373
|
|
|
@@ -431,7 +389,7 @@
|
|
|
431
389
|
|
|
432
390
|
<dt class="tag-source">Source:</dt>
|
|
433
391
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
434
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
392
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2283">line 2283</a>
|
|
435
393
|
</li></ul></dd>
|
|
436
394
|
|
|
437
395
|
|
|
@@ -457,8 +415,10 @@
|
|
|
457
415
|
<dl>
|
|
458
416
|
|
|
459
417
|
<dt>
|
|
460
|
-
|
|
418
|
+
|
|
419
|
+
<h4 class="name" id="decode"><span class="type-signature">(static) </span>decode<span class="signature">(buffer, enc<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → (non-null) {<a href="ProtoBuf.Builder.Message.html">ProtoBuf.Builder.Message</a>}</span></h4>
|
|
461
420
|
|
|
421
|
+
|
|
462
422
|
|
|
463
423
|
</dt>
|
|
464
424
|
<dd>
|
|
@@ -474,6 +434,8 @@
|
|
|
474
434
|
|
|
475
435
|
|
|
476
436
|
|
|
437
|
+
|
|
438
|
+
|
|
477
439
|
<h5>Parameters:</h5>
|
|
478
440
|
|
|
479
441
|
|
|
@@ -576,7 +538,14 @@
|
|
|
576
538
|
|
|
577
539
|
|
|
578
540
|
|
|
541
|
+
|
|
542
|
+
|
|
579
543
|
<dl class="details">
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
|
|
580
549
|
|
|
581
550
|
|
|
582
551
|
|
|
@@ -598,7 +567,7 @@
|
|
|
598
567
|
|
|
599
568
|
<dt class="tag-source">Source:</dt>
|
|
600
569
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
601
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
570
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2171">line 2171</a>
|
|
602
571
|
</li></ul></dd>
|
|
603
572
|
|
|
604
573
|
|
|
@@ -686,8 +655,10 @@
|
|
|
686
655
|
|
|
687
656
|
|
|
688
657
|
<dt>
|
|
689
|
-
|
|
658
|
+
|
|
659
|
+
<h4 class="name" id="decode64"><span class="type-signature">(static) </span>decode64<span class="signature">(str)</span><span class="type-signature"> → (non-null) {<a href="ProtoBuf.Builder.Message.html">ProtoBuf.Builder.Message</a>}</span></h4>
|
|
690
660
|
|
|
661
|
+
|
|
691
662
|
|
|
692
663
|
</dt>
|
|
693
664
|
<dd>
|
|
@@ -703,6 +674,8 @@
|
|
|
703
674
|
|
|
704
675
|
|
|
705
676
|
|
|
677
|
+
|
|
678
|
+
|
|
706
679
|
<h5>Parameters:</h5>
|
|
707
680
|
|
|
708
681
|
|
|
@@ -753,7 +726,14 @@
|
|
|
753
726
|
|
|
754
727
|
|
|
755
728
|
|
|
729
|
+
|
|
730
|
+
|
|
756
731
|
<dl class="details">
|
|
732
|
+
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
|
|
736
|
+
|
|
757
737
|
|
|
758
738
|
|
|
759
739
|
|
|
@@ -775,7 +755,7 @@
|
|
|
775
755
|
|
|
776
756
|
<dt class="tag-source">Source:</dt>
|
|
777
757
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
778
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
758
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2232">line 2232</a>
|
|
779
759
|
</li></ul></dd>
|
|
780
760
|
|
|
781
761
|
|
|
@@ -854,8 +834,10 @@
|
|
|
854
834
|
|
|
855
835
|
|
|
856
836
|
<dt>
|
|
857
|
-
|
|
837
|
+
|
|
838
|
+
<h4 class="name" id="decodeDelimited"><span class="type-signature">(static) </span>decodeDelimited<span class="signature">(buffer, enc<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → {<a href="ProtoBuf.Builder.Message.html">ProtoBuf.Builder.Message</a>}</span></h4>
|
|
858
839
|
|
|
840
|
+
|
|
859
841
|
|
|
860
842
|
</dt>
|
|
861
843
|
<dd>
|
|
@@ -871,6 +853,8 @@
|
|
|
871
853
|
|
|
872
854
|
|
|
873
855
|
|
|
856
|
+
|
|
857
|
+
|
|
874
858
|
<h5>Parameters:</h5>
|
|
875
859
|
|
|
876
860
|
|
|
@@ -973,7 +957,14 @@
|
|
|
973
957
|
|
|
974
958
|
|
|
975
959
|
|
|
960
|
+
|
|
961
|
+
|
|
976
962
|
<dl class="details">
|
|
963
|
+
|
|
964
|
+
|
|
965
|
+
|
|
966
|
+
|
|
967
|
+
|
|
977
968
|
|
|
978
969
|
|
|
979
970
|
|
|
@@ -995,7 +986,7 @@
|
|
|
995
986
|
|
|
996
987
|
<dt class="tag-source">Source:</dt>
|
|
997
988
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
998
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
989
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2199">line 2199</a>
|
|
999
990
|
</li></ul></dd>
|
|
1000
991
|
|
|
1001
992
|
|
|
@@ -1074,8 +1065,10 @@
|
|
|
1074
1065
|
|
|
1075
1066
|
|
|
1076
1067
|
<dt>
|
|
1077
|
-
|
|
1068
|
+
|
|
1069
|
+
<h4 class="name" id="decodeHex"><span class="type-signature">(static) </span>decodeHex<span class="signature">(str)</span><span class="type-signature"> → (non-null) {<a href="ProtoBuf.Builder.Message.html">ProtoBuf.Builder.Message</a>}</span></h4>
|
|
1078
1070
|
|
|
1071
|
+
|
|
1079
1072
|
|
|
1080
1073
|
</dt>
|
|
1081
1074
|
<dd>
|
|
@@ -1091,6 +1084,8 @@
|
|
|
1091
1084
|
|
|
1092
1085
|
|
|
1093
1086
|
|
|
1087
|
+
|
|
1088
|
+
|
|
1094
1089
|
<h5>Parameters:</h5>
|
|
1095
1090
|
|
|
1096
1091
|
|
|
@@ -1141,7 +1136,14 @@
|
|
|
1141
1136
|
|
|
1142
1137
|
|
|
1143
1138
|
|
|
1139
|
+
|
|
1140
|
+
|
|
1144
1141
|
<dl class="details">
|
|
1142
|
+
|
|
1143
|
+
|
|
1144
|
+
|
|
1145
|
+
|
|
1146
|
+
|
|
1145
1147
|
|
|
1146
1148
|
|
|
1147
1149
|
|
|
@@ -1163,7 +1165,7 @@
|
|
|
1163
1165
|
|
|
1164
1166
|
<dt class="tag-source">Source:</dt>
|
|
1165
1167
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1166
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1168
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2246">line 2246</a>
|
|
1167
1169
|
</li></ul></dd>
|
|
1168
1170
|
|
|
1169
1171
|
|
|
@@ -1242,8 +1244,10 @@
|
|
|
1242
1244
|
|
|
1243
1245
|
|
|
1244
1246
|
<dt>
|
|
1245
|
-
|
|
1247
|
+
|
|
1248
|
+
<h4 class="name" id="$add"><span class="type-signature"></span>$add<span class="signature">(key, value, noAssert<span class="signature-attributes">opt</span>)</span><span class="type-signature"></span></h4>
|
|
1246
1249
|
|
|
1250
|
+
|
|
1247
1251
|
|
|
1248
1252
|
</dt>
|
|
1249
1253
|
<dd>
|
|
@@ -1259,6 +1263,8 @@
|
|
|
1259
1263
|
|
|
1260
1264
|
|
|
1261
1265
|
|
|
1266
|
+
|
|
1267
|
+
|
|
1262
1268
|
<h5>Parameters:</h5>
|
|
1263
1269
|
|
|
1264
1270
|
|
|
@@ -1383,7 +1389,14 @@
|
|
|
1383
1389
|
|
|
1384
1390
|
|
|
1385
1391
|
|
|
1392
|
+
|
|
1393
|
+
|
|
1386
1394
|
<dl class="details">
|
|
1395
|
+
|
|
1396
|
+
|
|
1397
|
+
|
|
1398
|
+
|
|
1399
|
+
|
|
1387
1400
|
|
|
1388
1401
|
|
|
1389
1402
|
|
|
@@ -1405,7 +1418,7 @@
|
|
|
1405
1418
|
|
|
1406
1419
|
<dt class="tag-source">Source:</dt>
|
|
1407
1420
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1408
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1421
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1763">line 1763</a>
|
|
1409
1422
|
</li></ul></dd>
|
|
1410
1423
|
|
|
1411
1424
|
|
|
@@ -1462,8 +1475,10 @@
|
|
|
1462
1475
|
|
|
1463
1476
|
|
|
1464
1477
|
<dt>
|
|
1465
|
-
|
|
1478
|
+
|
|
1479
|
+
<h4 class="name" id="$encode"><span class="type-signature"></span>$encode<span class="signature">(buffer<span class="signature-attributes">opt</span>, noVerify<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → (non-null) {ByteBuffer}</span></h4>
|
|
1466
1480
|
|
|
1481
|
+
|
|
1467
1482
|
|
|
1468
1483
|
</dt>
|
|
1469
1484
|
<dd>
|
|
@@ -1479,6 +1494,8 @@
|
|
|
1479
1494
|
|
|
1480
1495
|
|
|
1481
1496
|
|
|
1497
|
+
|
|
1498
|
+
|
|
1482
1499
|
<h5>Parameters:</h5>
|
|
1483
1500
|
|
|
1484
1501
|
|
|
@@ -1577,7 +1594,14 @@
|
|
|
1577
1594
|
|
|
1578
1595
|
|
|
1579
1596
|
|
|
1597
|
+
|
|
1598
|
+
|
|
1580
1599
|
<dl class="details">
|
|
1600
|
+
|
|
1601
|
+
|
|
1602
|
+
|
|
1603
|
+
|
|
1604
|
+
|
|
1581
1605
|
|
|
1582
1606
|
|
|
1583
1607
|
|
|
@@ -1599,7 +1623,7 @@
|
|
|
1599
1623
|
|
|
1600
1624
|
<dt class="tag-source">Source:</dt>
|
|
1601
1625
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1602
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1626
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1957">line 1957</a>
|
|
1603
1627
|
</li></ul></dd>
|
|
1604
1628
|
|
|
1605
1629
|
|
|
@@ -1689,8 +1713,10 @@
|
|
|
1689
1713
|
|
|
1690
1714
|
|
|
1691
1715
|
<dt>
|
|
1692
|
-
|
|
1716
|
+
|
|
1717
|
+
<h4 class="name" id="$get"><span class="type-signature"></span>$get<span class="signature">(key)</span><span class="type-signature"> → {*}</span></h4>
|
|
1693
1718
|
|
|
1719
|
+
|
|
1694
1720
|
|
|
1695
1721
|
</dt>
|
|
1696
1722
|
<dd>
|
|
@@ -1706,6 +1732,8 @@
|
|
|
1706
1732
|
|
|
1707
1733
|
|
|
1708
1734
|
|
|
1735
|
+
|
|
1736
|
+
|
|
1709
1737
|
<h5>Parameters:</h5>
|
|
1710
1738
|
|
|
1711
1739
|
|
|
@@ -1756,7 +1784,14 @@
|
|
|
1756
1784
|
|
|
1757
1785
|
|
|
1758
1786
|
|
|
1787
|
+
|
|
1788
|
+
|
|
1759
1789
|
<dl class="details">
|
|
1790
|
+
|
|
1791
|
+
|
|
1792
|
+
|
|
1793
|
+
|
|
1794
|
+
|
|
1760
1795
|
|
|
1761
1796
|
|
|
1762
1797
|
|
|
@@ -1778,7 +1813,7 @@
|
|
|
1778
1813
|
|
|
1779
1814
|
<dt class="tag-source">Source:</dt>
|
|
1780
1815
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1781
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1816
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1847">line 1847</a>
|
|
1782
1817
|
</li></ul></dd>
|
|
1783
1818
|
|
|
1784
1819
|
|
|
@@ -1857,8 +1892,10 @@
|
|
|
1857
1892
|
|
|
1858
1893
|
|
|
1859
1894
|
<dt>
|
|
1860
|
-
|
|
1895
|
+
|
|
1896
|
+
<h4 class="name" id="$set"><span class="type-signature"></span>$set<span class="signature">(key, value, noAssert<span class="signature-attributes">opt</span>)</span><span class="type-signature"></span></h4>
|
|
1861
1897
|
|
|
1898
|
+
|
|
1862
1899
|
|
|
1863
1900
|
</dt>
|
|
1864
1901
|
<dd>
|
|
@@ -1874,6 +1911,8 @@
|
|
|
1874
1911
|
|
|
1875
1912
|
|
|
1876
1913
|
|
|
1914
|
+
|
|
1915
|
+
|
|
1877
1916
|
<h5>Parameters:</h5>
|
|
1878
1917
|
|
|
1879
1918
|
|
|
@@ -1989,7 +2028,7 @@
|
|
|
1989
2028
|
|
|
1990
2029
|
|
|
1991
2030
|
|
|
1992
|
-
<td class="description last"><p>Whether to assert the value
|
|
2031
|
+
<td class="description last"><p>Whether to not assert the value, defaults to <code>false</code></p></td>
|
|
1993
2032
|
</tr>
|
|
1994
2033
|
|
|
1995
2034
|
|
|
@@ -1998,7 +2037,14 @@
|
|
|
1998
2037
|
|
|
1999
2038
|
|
|
2000
2039
|
|
|
2040
|
+
|
|
2041
|
+
|
|
2001
2042
|
<dl class="details">
|
|
2043
|
+
|
|
2044
|
+
|
|
2045
|
+
|
|
2046
|
+
|
|
2047
|
+
|
|
2002
2048
|
|
|
2003
2049
|
|
|
2004
2050
|
|
|
@@ -2020,7 +2066,7 @@
|
|
|
2020
2066
|
|
|
2021
2067
|
<dt class="tag-source">Source:</dt>
|
|
2022
2068
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2023
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2069
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1814">line 1814</a>
|
|
2024
2070
|
</li></ul></dd>
|
|
2025
2071
|
|
|
2026
2072
|
|
|
@@ -2077,8 +2123,10 @@
|
|
|
2077
2123
|
|
|
2078
2124
|
|
|
2079
2125
|
<dt>
|
|
2080
|
-
|
|
2126
|
+
|
|
2127
|
+
<h4 class="name" id="add"><span class="type-signature"></span>add<span class="signature">(key, value, noAssert<span class="signature-attributes">opt</span>)</span><span class="type-signature"></span></h4>
|
|
2081
2128
|
|
|
2129
|
+
|
|
2082
2130
|
|
|
2083
2131
|
</dt>
|
|
2084
2132
|
<dd>
|
|
@@ -2094,6 +2142,8 @@
|
|
|
2094
2142
|
|
|
2095
2143
|
|
|
2096
2144
|
|
|
2145
|
+
|
|
2146
|
+
|
|
2097
2147
|
<h5>Parameters:</h5>
|
|
2098
2148
|
|
|
2099
2149
|
|
|
@@ -2218,7 +2268,14 @@
|
|
|
2218
2268
|
|
|
2219
2269
|
|
|
2220
2270
|
|
|
2271
|
+
|
|
2272
|
+
|
|
2221
2273
|
<dl class="details">
|
|
2274
|
+
|
|
2275
|
+
|
|
2276
|
+
|
|
2277
|
+
|
|
2278
|
+
|
|
2222
2279
|
|
|
2223
2280
|
|
|
2224
2281
|
|
|
@@ -2240,7 +2297,7 @@
|
|
|
2240
2297
|
|
|
2241
2298
|
<dt class="tag-source">Source:</dt>
|
|
2242
2299
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2243
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2300
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1738">line 1738</a>
|
|
2244
2301
|
</li></ul></dd>
|
|
2245
2302
|
|
|
2246
2303
|
|
|
@@ -2297,8 +2354,10 @@
|
|
|
2297
2354
|
|
|
2298
2355
|
|
|
2299
2356
|
<dt>
|
|
2300
|
-
|
|
2357
|
+
|
|
2358
|
+
<h4 class="name" id="calculate"><span class="type-signature"></span>calculate<span class="signature">()</span><span class="type-signature"> → {number}</span></h4>
|
|
2301
2359
|
|
|
2360
|
+
|
|
2302
2361
|
|
|
2303
2362
|
</dt>
|
|
2304
2363
|
<dd>
|
|
@@ -2316,7 +2375,16 @@
|
|
|
2316
2375
|
|
|
2317
2376
|
|
|
2318
2377
|
|
|
2378
|
+
|
|
2379
|
+
|
|
2380
|
+
|
|
2381
|
+
|
|
2319
2382
|
<dl class="details">
|
|
2383
|
+
|
|
2384
|
+
|
|
2385
|
+
|
|
2386
|
+
|
|
2387
|
+
|
|
2320
2388
|
|
|
2321
2389
|
|
|
2322
2390
|
|
|
@@ -2338,7 +2406,7 @@
|
|
|
2338
2406
|
|
|
2339
2407
|
<dt class="tag-source">Source:</dt>
|
|
2340
2408
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2341
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2409
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1989">line 1989</a>
|
|
2342
2410
|
</li></ul></dd>
|
|
2343
2411
|
|
|
2344
2412
|
|
|
@@ -2417,8 +2485,10 @@
|
|
|
2417
2485
|
|
|
2418
2486
|
|
|
2419
2487
|
<dt>
|
|
2420
|
-
|
|
2488
|
+
|
|
2489
|
+
<h4 class="name" id="encode64"><span class="type-signature"></span>encode64<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
2421
2490
|
|
|
2491
|
+
|
|
2422
2492
|
|
|
2423
2493
|
</dt>
|
|
2424
2494
|
<dd>
|
|
@@ -2436,7 +2506,16 @@
|
|
|
2436
2506
|
|
|
2437
2507
|
|
|
2438
2508
|
|
|
2509
|
+
|
|
2510
|
+
|
|
2511
|
+
|
|
2512
|
+
|
|
2439
2513
|
<dl class="details">
|
|
2514
|
+
|
|
2515
|
+
|
|
2516
|
+
|
|
2517
|
+
|
|
2518
|
+
|
|
2440
2519
|
|
|
2441
2520
|
|
|
2442
2521
|
|
|
@@ -2458,7 +2537,7 @@
|
|
|
2458
2537
|
|
|
2459
2538
|
<dt class="tag-source">Source:</dt>
|
|
2460
2539
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2461
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2540
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2081">line 2081</a>
|
|
2462
2541
|
</li></ul></dd>
|
|
2463
2542
|
|
|
2464
2543
|
|
|
@@ -2537,8 +2616,10 @@
|
|
|
2537
2616
|
|
|
2538
2617
|
|
|
2539
2618
|
<dt>
|
|
2540
|
-
|
|
2619
|
+
|
|
2620
|
+
<h4 class="name" id="encodeAB"><span class="type-signature"></span>encodeAB<span class="signature">()</span><span class="type-signature"> → {ArrayBuffer}</span></h4>
|
|
2541
2621
|
|
|
2622
|
+
|
|
2542
2623
|
|
|
2543
2624
|
</dt>
|
|
2544
2625
|
<dd>
|
|
@@ -2556,7 +2637,16 @@
|
|
|
2556
2637
|
|
|
2557
2638
|
|
|
2558
2639
|
|
|
2640
|
+
|
|
2641
|
+
|
|
2642
|
+
|
|
2643
|
+
|
|
2559
2644
|
<dl class="details">
|
|
2645
|
+
|
|
2646
|
+
|
|
2647
|
+
|
|
2648
|
+
|
|
2649
|
+
|
|
2560
2650
|
|
|
2561
2651
|
|
|
2562
2652
|
|
|
@@ -2578,7 +2668,7 @@
|
|
|
2578
2668
|
|
|
2579
2669
|
<dt class="tag-source">Source:</dt>
|
|
2580
2670
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2581
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2671
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2023">line 2023</a>
|
|
2582
2672
|
</li></ul></dd>
|
|
2583
2673
|
|
|
2584
2674
|
|
|
@@ -2657,8 +2747,10 @@
|
|
|
2657
2747
|
|
|
2658
2748
|
|
|
2659
2749
|
<dt>
|
|
2660
|
-
|
|
2750
|
+
|
|
2751
|
+
<h4 class="name" id="encodeDelimited"><span class="type-signature"></span>encodeDelimited<span class="signature">(buffer<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → (non-null) {ByteBuffer}</span></h4>
|
|
2661
2752
|
|
|
2753
|
+
|
|
2662
2754
|
|
|
2663
2755
|
</dt>
|
|
2664
2756
|
<dd>
|
|
@@ -2674,6 +2766,8 @@
|
|
|
2674
2766
|
|
|
2675
2767
|
|
|
2676
2768
|
|
|
2769
|
+
|
|
2770
|
+
|
|
2677
2771
|
<h5>Parameters:</h5>
|
|
2678
2772
|
|
|
2679
2773
|
|
|
@@ -2739,7 +2833,14 @@
|
|
|
2739
2833
|
|
|
2740
2834
|
|
|
2741
2835
|
|
|
2836
|
+
|
|
2837
|
+
|
|
2742
2838
|
<dl class="details">
|
|
2839
|
+
|
|
2840
|
+
|
|
2841
|
+
|
|
2842
|
+
|
|
2843
|
+
|
|
2743
2844
|
|
|
2744
2845
|
|
|
2745
2846
|
|
|
@@ -2761,7 +2862,7 @@
|
|
|
2761
2862
|
|
|
2762
2863
|
<dt class="tag-source">Source:</dt>
|
|
2763
2864
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2764
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2865
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2001">line 2001</a>
|
|
2765
2866
|
</li></ul></dd>
|
|
2766
2867
|
|
|
2767
2868
|
|
|
@@ -2840,8 +2941,10 @@
|
|
|
2840
2941
|
|
|
2841
2942
|
|
|
2842
2943
|
<dt>
|
|
2843
|
-
|
|
2944
|
+
|
|
2945
|
+
<h4 class="name" id="encodeHex"><span class="type-signature"></span>encodeHex<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
2844
2946
|
|
|
2947
|
+
|
|
2845
2948
|
|
|
2846
2949
|
</dt>
|
|
2847
2950
|
<dd>
|
|
@@ -2859,7 +2962,16 @@
|
|
|
2859
2962
|
|
|
2860
2963
|
|
|
2861
2964
|
|
|
2965
|
+
|
|
2966
|
+
|
|
2967
|
+
|
|
2968
|
+
|
|
2862
2969
|
<dl class="details">
|
|
2970
|
+
|
|
2971
|
+
|
|
2972
|
+
|
|
2973
|
+
|
|
2974
|
+
|
|
2863
2975
|
|
|
2864
2976
|
|
|
2865
2977
|
|
|
@@ -2881,7 +2993,7 @@
|
|
|
2881
2993
|
|
|
2882
2994
|
<dt class="tag-source">Source:</dt>
|
|
2883
2995
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2884
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2996
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2110">line 2110</a>
|
|
2885
2997
|
</li></ul></dd>
|
|
2886
2998
|
|
|
2887
2999
|
|
|
@@ -2960,8 +3072,10 @@
|
|
|
2960
3072
|
|
|
2961
3073
|
|
|
2962
3074
|
<dt>
|
|
2963
|
-
|
|
3075
|
+
|
|
3076
|
+
<h4 class="name" id="encodeNB"><span class="type-signature"></span>encodeNB<span class="signature">()</span><span class="type-signature"> → (non-null) {Buffer}</span></h4>
|
|
2964
3077
|
|
|
3078
|
+
|
|
2965
3079
|
|
|
2966
3080
|
</dt>
|
|
2967
3081
|
<dd>
|
|
@@ -2979,7 +3093,16 @@
|
|
|
2979
3093
|
|
|
2980
3094
|
|
|
2981
3095
|
|
|
3096
|
+
|
|
3097
|
+
|
|
3098
|
+
|
|
3099
|
+
|
|
2982
3100
|
<dl class="details">
|
|
3101
|
+
|
|
3102
|
+
|
|
3103
|
+
|
|
3104
|
+
|
|
3105
|
+
|
|
2983
3106
|
|
|
2984
3107
|
|
|
2985
3108
|
|
|
@@ -3001,7 +3124,7 @@
|
|
|
3001
3124
|
|
|
3002
3125
|
<dt class="tag-source">Source:</dt>
|
|
3003
3126
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
3004
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
3127
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2052">line 2052</a>
|
|
3005
3128
|
</li></ul></dd>
|
|
3006
3129
|
|
|
3007
3130
|
|
|
@@ -3076,8 +3199,10 @@
|
|
|
3076
3199
|
|
|
3077
3200
|
|
|
3078
3201
|
<dt>
|
|
3079
|
-
|
|
3202
|
+
|
|
3203
|
+
<h4 class="name" id="get"><span class="type-signature"></span>get<span class="signature">(key, noAssert<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → {*}</span></h4>
|
|
3080
3204
|
|
|
3205
|
+
|
|
3081
3206
|
|
|
3082
3207
|
</dt>
|
|
3083
3208
|
<dd>
|
|
@@ -3093,7 +3218,9 @@
|
|
|
3093
3218
|
|
|
3094
3219
|
|
|
3095
3220
|
|
|
3096
|
-
|
|
3221
|
+
|
|
3222
|
+
|
|
3223
|
+
<h5>Parameters:</h5>
|
|
3097
3224
|
|
|
3098
3225
|
|
|
3099
3226
|
<table class="params">
|
|
@@ -3177,7 +3304,7 @@
|
|
|
3177
3304
|
|
|
3178
3305
|
|
|
3179
3306
|
|
|
3180
|
-
<td class="description last"><p>Whether to
|
|
3307
|
+
<td class="description last"><p>Whether to not assert for an actual field, defaults to <code>false</code></p></td>
|
|
3181
3308
|
</tr>
|
|
3182
3309
|
|
|
3183
3310
|
|
|
@@ -3186,7 +3313,14 @@
|
|
|
3186
3313
|
|
|
3187
3314
|
|
|
3188
3315
|
|
|
3316
|
+
|
|
3317
|
+
|
|
3189
3318
|
<dl class="details">
|
|
3319
|
+
|
|
3320
|
+
|
|
3321
|
+
|
|
3322
|
+
|
|
3323
|
+
|
|
3190
3324
|
|
|
3191
3325
|
|
|
3192
3326
|
|
|
@@ -3208,7 +3342,7 @@
|
|
|
3208
3342
|
|
|
3209
3343
|
<dt class="tag-source">Source:</dt>
|
|
3210
3344
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
3211
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
3345
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1826">line 1826</a>
|
|
3212
3346
|
</li></ul></dd>
|
|
3213
3347
|
|
|
3214
3348
|
|
|
@@ -3287,8 +3421,10 @@
|
|
|
3287
3421
|
|
|
3288
3422
|
|
|
3289
3423
|
<dt>
|
|
3290
|
-
|
|
3424
|
+
|
|
3425
|
+
<h4 class="name" id="get%5BSomeField%5D"><span class="type-signature">(abstract) </span>get[SomeField]<span class="signature">()</span><span class="type-signature"> → {*}</span></h4>
|
|
3291
3426
|
|
|
3427
|
+
|
|
3292
3428
|
|
|
3293
3429
|
</dt>
|
|
3294
3430
|
<dd>
|
|
@@ -3296,7 +3432,7 @@
|
|
|
3296
3432
|
|
|
3297
3433
|
<div class="description">
|
|
3298
3434
|
<p>Gets a value. This method is present for each field, but only if there is no name conflict with
|
|
3299
|
-
another field.</p>
|
|
3435
|
+
another field.</p>
|
|
3300
3436
|
</div>
|
|
3301
3437
|
|
|
3302
3438
|
|
|
@@ -3307,7 +3443,16 @@ another field.</p>
|
|
|
3307
3443
|
|
|
3308
3444
|
|
|
3309
3445
|
|
|
3446
|
+
|
|
3447
|
+
|
|
3448
|
+
|
|
3449
|
+
|
|
3310
3450
|
<dl class="details">
|
|
3451
|
+
|
|
3452
|
+
|
|
3453
|
+
|
|
3454
|
+
|
|
3455
|
+
|
|
3311
3456
|
|
|
3312
3457
|
|
|
3313
3458
|
|
|
@@ -3329,7 +3474,7 @@ another field.</p>
|
|
|
3329
3474
|
|
|
3330
3475
|
<dt class="tag-source">Source:</dt>
|
|
3331
3476
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
3332
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
3477
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1930">line 1930</a>
|
|
3333
3478
|
</li></ul></dd>
|
|
3334
3479
|
|
|
3335
3480
|
|
|
@@ -3381,8 +3526,10 @@ another field.</p>
|
|
|
3381
3526
|
|
|
3382
3527
|
|
|
3383
3528
|
<dt>
|
|
3384
|
-
|
|
3529
|
+
|
|
3530
|
+
<h4 class="name" id="get_%5Bsome_field%5D"><span class="type-signature">(abstract) </span>get_[some_field]<span class="signature">()</span><span class="type-signature"> → {*}</span></h4>
|
|
3385
3531
|
|
|
3532
|
+
|
|
3386
3533
|
|
|
3387
3534
|
</dt>
|
|
3388
3535
|
<dd>
|
|
@@ -3390,7 +3537,7 @@ another field.</p>
|
|
|
3390
3537
|
|
|
3391
3538
|
<div class="description">
|
|
3392
3539
|
<p>Gets a value. This method is present for each field, but only if there is no name conflict with
|
|
3393
|
-
another field.</p>
|
|
3540
|
+
another field.</p>
|
|
3394
3541
|
</div>
|
|
3395
3542
|
|
|
3396
3543
|
|
|
@@ -3401,7 +3548,16 @@ another field.</p>
|
|
|
3401
3548
|
|
|
3402
3549
|
|
|
3403
3550
|
|
|
3551
|
+
|
|
3552
|
+
|
|
3553
|
+
|
|
3554
|
+
|
|
3404
3555
|
<dl class="details">
|
|
3556
|
+
|
|
3557
|
+
|
|
3558
|
+
|
|
3559
|
+
|
|
3560
|
+
|
|
3405
3561
|
|
|
3406
3562
|
|
|
3407
3563
|
|
|
@@ -3423,7 +3579,7 @@ another field.</p>
|
|
|
3423
3579
|
|
|
3424
3580
|
<dt class="tag-source">Source:</dt>
|
|
3425
3581
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
3426
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
3582
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1941">line 1941</a>
|
|
3427
3583
|
</li></ul></dd>
|
|
3428
3584
|
|
|
3429
3585
|
|
|
@@ -3475,8 +3631,10 @@ another field.</p>
|
|
|
3475
3631
|
|
|
3476
3632
|
|
|
3477
3633
|
<dt>
|
|
3478
|
-
|
|
3634
|
+
|
|
3635
|
+
<h4 class="name" id="set"><span class="type-signature"></span>set<span class="signature">(key, value, noAssert<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → (non-null) {<a href="ProtoBuf.Builder.Message.html">ProtoBuf.Builder.Message</a>}</span></h4>
|
|
3479
3636
|
|
|
3637
|
+
|
|
3480
3638
|
|
|
3481
3639
|
</dt>
|
|
3482
3640
|
<dd>
|
|
@@ -3492,6 +3650,8 @@ another field.</p>
|
|
|
3492
3650
|
|
|
3493
3651
|
|
|
3494
3652
|
|
|
3653
|
+
|
|
3654
|
+
|
|
3495
3655
|
<h5>Parameters:</h5>
|
|
3496
3656
|
|
|
3497
3657
|
|
|
@@ -3616,7 +3776,14 @@ another field.</p>
|
|
|
3616
3776
|
|
|
3617
3777
|
|
|
3618
3778
|
|
|
3779
|
+
|
|
3780
|
+
|
|
3619
3781
|
<dl class="details">
|
|
3782
|
+
|
|
3783
|
+
|
|
3784
|
+
|
|
3785
|
+
|
|
3786
|
+
|
|
3620
3787
|
|
|
3621
3788
|
|
|
3622
3789
|
|
|
@@ -3638,7 +3805,7 @@ another field.</p>
|
|
|
3638
3805
|
|
|
3639
3806
|
<dt class="tag-source">Source:</dt>
|
|
3640
3807
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
3641
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
3808
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1775">line 1775</a>
|
|
3642
3809
|
</li></ul></dd>
|
|
3643
3810
|
|
|
3644
3811
|
|
|
@@ -3717,8 +3884,10 @@ another field.</p>
|
|
|
3717
3884
|
|
|
3718
3885
|
|
|
3719
3886
|
<dt>
|
|
3720
|
-
|
|
3887
|
+
|
|
3888
|
+
<h4 class="name" id="set%5BSomeField%5D"><span class="type-signature">(abstract) </span>set[SomeField]<span class="signature">(value, noAssert<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → (non-null) {<a href="ProtoBuf.Builder.Message.html">ProtoBuf.Builder.Message</a>}</span></h4>
|
|
3721
3889
|
|
|
3890
|
+
|
|
3722
3891
|
|
|
3723
3892
|
</dt>
|
|
3724
3893
|
<dd>
|
|
@@ -3726,7 +3895,7 @@ another field.</p>
|
|
|
3726
3895
|
|
|
3727
3896
|
<div class="description">
|
|
3728
3897
|
<p>Sets a value. This method is present for each field, but only if there is no name conflict with
|
|
3729
|
-
another field.</p>
|
|
3898
|
+
another field.</p>
|
|
3730
3899
|
</div>
|
|
3731
3900
|
|
|
3732
3901
|
|
|
@@ -3735,6 +3904,8 @@ another field.</p>
|
|
|
3735
3904
|
|
|
3736
3905
|
|
|
3737
3906
|
|
|
3907
|
+
|
|
3908
|
+
|
|
3738
3909
|
<h5>Parameters:</h5>
|
|
3739
3910
|
|
|
3740
3911
|
|
|
@@ -3748,6 +3919,8 @@ another field.</p>
|
|
|
3748
3919
|
<th>Type</th>
|
|
3749
3920
|
|
|
3750
3921
|
|
|
3922
|
+
<th>Attributes</th>
|
|
3923
|
+
|
|
3751
3924
|
|
|
3752
3925
|
|
|
3753
3926
|
|
|
@@ -3773,6 +3946,14 @@ another field.</p>
|
|
|
3773
3946
|
</td>
|
|
3774
3947
|
|
|
3775
3948
|
|
|
3949
|
+
<td class="attributes">
|
|
3950
|
+
|
|
3951
|
+
|
|
3952
|
+
|
|
3953
|
+
|
|
3954
|
+
|
|
3955
|
+
</td>
|
|
3956
|
+
|
|
3776
3957
|
|
|
3777
3958
|
|
|
3778
3959
|
|
|
@@ -3780,12 +3961,52 @@ another field.</p>
|
|
|
3780
3961
|
</tr>
|
|
3781
3962
|
|
|
3782
3963
|
|
|
3964
|
+
|
|
3965
|
+
<tr>
|
|
3966
|
+
|
|
3967
|
+
<td class="name"><code>noAssert</code></td>
|
|
3968
|
+
|
|
3969
|
+
|
|
3970
|
+
<td class="type">
|
|
3971
|
+
|
|
3972
|
+
|
|
3973
|
+
<span class="param-type">boolean</span>
|
|
3974
|
+
|
|
3975
|
+
|
|
3976
|
+
|
|
3977
|
+
</td>
|
|
3978
|
+
|
|
3979
|
+
|
|
3980
|
+
<td class="attributes">
|
|
3981
|
+
|
|
3982
|
+
<optional><br>
|
|
3983
|
+
|
|
3984
|
+
|
|
3985
|
+
|
|
3986
|
+
|
|
3987
|
+
|
|
3988
|
+
</td>
|
|
3989
|
+
|
|
3990
|
+
|
|
3991
|
+
|
|
3992
|
+
|
|
3993
|
+
<td class="description last"><p>Whether to not assert the value, defaults to <code>false</code></p></td>
|
|
3994
|
+
</tr>
|
|
3995
|
+
|
|
3996
|
+
|
|
3783
3997
|
</tbody>
|
|
3784
3998
|
</table>
|
|
3785
3999
|
|
|
3786
4000
|
|
|
3787
4001
|
|
|
4002
|
+
|
|
4003
|
+
|
|
3788
4004
|
<dl class="details">
|
|
4005
|
+
|
|
4006
|
+
|
|
4007
|
+
|
|
4008
|
+
|
|
4009
|
+
|
|
3789
4010
|
|
|
3790
4011
|
|
|
3791
4012
|
|
|
@@ -3807,7 +4028,7 @@ another field.</p>
|
|
|
3807
4028
|
|
|
3808
4029
|
<dt class="tag-source">Source:</dt>
|
|
3809
4030
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
3810
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
4031
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1902">line 1902</a>
|
|
3811
4032
|
</li></ul></dd>
|
|
3812
4033
|
|
|
3813
4034
|
|
|
@@ -3857,6 +4078,28 @@ another field.</p>
|
|
|
3857
4078
|
|
|
3858
4079
|
|
|
3859
4080
|
|
|
4081
|
+
<h5>Returns:</h5>
|
|
4082
|
+
|
|
4083
|
+
|
|
4084
|
+
<div class="param-desc">
|
|
4085
|
+
<p>this</p>
|
|
4086
|
+
</div>
|
|
4087
|
+
|
|
4088
|
+
|
|
4089
|
+
|
|
4090
|
+
<dl>
|
|
4091
|
+
<dt>
|
|
4092
|
+
Type
|
|
4093
|
+
</dt>
|
|
4094
|
+
<dd>
|
|
4095
|
+
|
|
4096
|
+
<span class="param-type"><a href="ProtoBuf.Builder.Message.html">ProtoBuf.Builder.Message</a></span>
|
|
4097
|
+
|
|
4098
|
+
|
|
4099
|
+
</dd>
|
|
4100
|
+
</dl>
|
|
4101
|
+
|
|
4102
|
+
|
|
3860
4103
|
|
|
3861
4104
|
|
|
3862
4105
|
</dd>
|
|
@@ -3864,8 +4107,10 @@ another field.</p>
|
|
|
3864
4107
|
|
|
3865
4108
|
|
|
3866
4109
|
<dt>
|
|
3867
|
-
|
|
4110
|
+
|
|
4111
|
+
<h4 class="name" id="set_%5Bsome_field%5D"><span class="type-signature">(abstract) </span>set_[some_field]<span class="signature">(value, noAssert<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → (non-null) {<a href="ProtoBuf.Builder.Message.html">ProtoBuf.Builder.Message</a>}</span></h4>
|
|
3868
4112
|
|
|
4113
|
+
|
|
3869
4114
|
|
|
3870
4115
|
</dt>
|
|
3871
4116
|
<dd>
|
|
@@ -3873,7 +4118,7 @@ another field.</p>
|
|
|
3873
4118
|
|
|
3874
4119
|
<div class="description">
|
|
3875
4120
|
<p>Sets a value. This method is present for each field, but only if there is no name conflict with
|
|
3876
|
-
another field.</p>
|
|
4121
|
+
another field.</p>
|
|
3877
4122
|
</div>
|
|
3878
4123
|
|
|
3879
4124
|
|
|
@@ -3882,6 +4127,8 @@ another field.</p>
|
|
|
3882
4127
|
|
|
3883
4128
|
|
|
3884
4129
|
|
|
4130
|
+
|
|
4131
|
+
|
|
3885
4132
|
<h5>Parameters:</h5>
|
|
3886
4133
|
|
|
3887
4134
|
|
|
@@ -3895,6 +4142,8 @@ another field.</p>
|
|
|
3895
4142
|
<th>Type</th>
|
|
3896
4143
|
|
|
3897
4144
|
|
|
4145
|
+
<th>Attributes</th>
|
|
4146
|
+
|
|
3898
4147
|
|
|
3899
4148
|
|
|
3900
4149
|
|
|
@@ -3920,6 +4169,14 @@ another field.</p>
|
|
|
3920
4169
|
</td>
|
|
3921
4170
|
|
|
3922
4171
|
|
|
4172
|
+
<td class="attributes">
|
|
4173
|
+
|
|
4174
|
+
|
|
4175
|
+
|
|
4176
|
+
|
|
4177
|
+
|
|
4178
|
+
</td>
|
|
4179
|
+
|
|
3923
4180
|
|
|
3924
4181
|
|
|
3925
4182
|
|
|
@@ -3927,12 +4184,52 @@ another field.</p>
|
|
|
3927
4184
|
</tr>
|
|
3928
4185
|
|
|
3929
4186
|
|
|
4187
|
+
|
|
4188
|
+
<tr>
|
|
4189
|
+
|
|
4190
|
+
<td class="name"><code>noAssert</code></td>
|
|
4191
|
+
|
|
4192
|
+
|
|
4193
|
+
<td class="type">
|
|
4194
|
+
|
|
4195
|
+
|
|
4196
|
+
<span class="param-type">boolean</span>
|
|
4197
|
+
|
|
4198
|
+
|
|
4199
|
+
|
|
4200
|
+
</td>
|
|
4201
|
+
|
|
4202
|
+
|
|
4203
|
+
<td class="attributes">
|
|
4204
|
+
|
|
4205
|
+
<optional><br>
|
|
4206
|
+
|
|
4207
|
+
|
|
4208
|
+
|
|
4209
|
+
|
|
4210
|
+
|
|
4211
|
+
</td>
|
|
4212
|
+
|
|
4213
|
+
|
|
4214
|
+
|
|
4215
|
+
|
|
4216
|
+
<td class="description last"><p>Whether to not assert the value, defaults to <code>false</code></p></td>
|
|
4217
|
+
</tr>
|
|
4218
|
+
|
|
4219
|
+
|
|
3930
4220
|
</tbody>
|
|
3931
4221
|
</table>
|
|
3932
4222
|
|
|
3933
4223
|
|
|
3934
4224
|
|
|
4225
|
+
|
|
4226
|
+
|
|
3935
4227
|
<dl class="details">
|
|
4228
|
+
|
|
4229
|
+
|
|
4230
|
+
|
|
4231
|
+
|
|
4232
|
+
|
|
3936
4233
|
|
|
3937
4234
|
|
|
3938
4235
|
|
|
@@ -3954,7 +4251,7 @@ another field.</p>
|
|
|
3954
4251
|
|
|
3955
4252
|
<dt class="tag-source">Source:</dt>
|
|
3956
4253
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
3957
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
4254
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1916">line 1916</a>
|
|
3958
4255
|
</li></ul></dd>
|
|
3959
4256
|
|
|
3960
4257
|
|
|
@@ -4004,6 +4301,28 @@ another field.</p>
|
|
|
4004
4301
|
|
|
4005
4302
|
|
|
4006
4303
|
|
|
4304
|
+
<h5>Returns:</h5>
|
|
4305
|
+
|
|
4306
|
+
|
|
4307
|
+
<div class="param-desc">
|
|
4308
|
+
<p>this</p>
|
|
4309
|
+
</div>
|
|
4310
|
+
|
|
4311
|
+
|
|
4312
|
+
|
|
4313
|
+
<dl>
|
|
4314
|
+
<dt>
|
|
4315
|
+
Type
|
|
4316
|
+
</dt>
|
|
4317
|
+
<dd>
|
|
4318
|
+
|
|
4319
|
+
<span class="param-type"><a href="ProtoBuf.Builder.Message.html">ProtoBuf.Builder.Message</a></span>
|
|
4320
|
+
|
|
4321
|
+
|
|
4322
|
+
</dd>
|
|
4323
|
+
</dl>
|
|
4324
|
+
|
|
4325
|
+
|
|
4007
4326
|
|
|
4008
4327
|
|
|
4009
4328
|
</dd>
|
|
@@ -4011,8 +4330,10 @@ another field.</p>
|
|
|
4011
4330
|
|
|
4012
4331
|
|
|
4013
4332
|
<dt>
|
|
4014
|
-
|
|
4333
|
+
|
|
4334
|
+
<h4 class="name" id="toArrayBuffer"><span class="type-signature"></span>toArrayBuffer<span class="signature">()</span><span class="type-signature"> → {ArrayBuffer}</span></h4>
|
|
4015
4335
|
|
|
4336
|
+
|
|
4016
4337
|
|
|
4017
4338
|
</dt>
|
|
4018
4339
|
<dd>
|
|
@@ -4030,7 +4351,16 @@ another field.</p>
|
|
|
4030
4351
|
|
|
4031
4352
|
|
|
4032
4353
|
|
|
4354
|
+
|
|
4355
|
+
|
|
4356
|
+
|
|
4357
|
+
|
|
4033
4358
|
<dl class="details">
|
|
4359
|
+
|
|
4360
|
+
|
|
4361
|
+
|
|
4362
|
+
|
|
4363
|
+
|
|
4034
4364
|
|
|
4035
4365
|
|
|
4036
4366
|
|
|
@@ -4052,7 +4382,7 @@ another field.</p>
|
|
|
4052
4382
|
|
|
4053
4383
|
<dt class="tag-source">Source:</dt>
|
|
4054
4384
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
4055
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
4385
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2041">line 2041</a>
|
|
4056
4386
|
</li></ul></dd>
|
|
4057
4387
|
|
|
4058
4388
|
|
|
@@ -4131,8 +4461,10 @@ another field.</p>
|
|
|
4131
4461
|
|
|
4132
4462
|
|
|
4133
4463
|
<dt>
|
|
4134
|
-
|
|
4464
|
+
|
|
4465
|
+
<h4 class="name" id="toBase64"><span class="type-signature"></span>toBase64<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
4135
4466
|
|
|
4467
|
+
|
|
4136
4468
|
|
|
4137
4469
|
</dt>
|
|
4138
4470
|
<dd>
|
|
@@ -4150,7 +4482,16 @@ another field.</p>
|
|
|
4150
4482
|
|
|
4151
4483
|
|
|
4152
4484
|
|
|
4485
|
+
|
|
4486
|
+
|
|
4487
|
+
|
|
4488
|
+
|
|
4153
4489
|
<dl class="details">
|
|
4490
|
+
|
|
4491
|
+
|
|
4492
|
+
|
|
4493
|
+
|
|
4494
|
+
|
|
4154
4495
|
|
|
4155
4496
|
|
|
4156
4497
|
|
|
@@ -4172,7 +4513,7 @@ another field.</p>
|
|
|
4172
4513
|
|
|
4173
4514
|
<dt class="tag-source">Source:</dt>
|
|
4174
4515
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
4175
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
4516
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2099">line 2099</a>
|
|
4176
4517
|
</li></ul></dd>
|
|
4177
4518
|
|
|
4178
4519
|
|
|
@@ -4251,8 +4592,10 @@ another field.</p>
|
|
|
4251
4592
|
|
|
4252
4593
|
|
|
4253
4594
|
<dt>
|
|
4254
|
-
|
|
4595
|
+
|
|
4596
|
+
<h4 class="name" id="toBuffer"><span class="type-signature"></span>toBuffer<span class="signature">()</span><span class="type-signature"> → (non-null) {Buffer}</span></h4>
|
|
4255
4597
|
|
|
4598
|
+
|
|
4256
4599
|
|
|
4257
4600
|
</dt>
|
|
4258
4601
|
<dd>
|
|
@@ -4270,7 +4613,16 @@ another field.</p>
|
|
|
4270
4613
|
|
|
4271
4614
|
|
|
4272
4615
|
|
|
4616
|
+
|
|
4617
|
+
|
|
4618
|
+
|
|
4619
|
+
|
|
4273
4620
|
<dl class="details">
|
|
4621
|
+
|
|
4622
|
+
|
|
4623
|
+
|
|
4624
|
+
|
|
4625
|
+
|
|
4274
4626
|
|
|
4275
4627
|
|
|
4276
4628
|
|
|
@@ -4292,7 +4644,7 @@ another field.</p>
|
|
|
4292
4644
|
|
|
4293
4645
|
<dt class="tag-source">Source:</dt>
|
|
4294
4646
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
4295
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
4647
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2070">line 2070</a>
|
|
4296
4648
|
</li></ul></dd>
|
|
4297
4649
|
|
|
4298
4650
|
|
|
@@ -4367,8 +4719,10 @@ another field.</p>
|
|
|
4367
4719
|
|
|
4368
4720
|
|
|
4369
4721
|
<dt>
|
|
4370
|
-
|
|
4722
|
+
|
|
4723
|
+
<h4 class="name" id="toHex"><span class="type-signature"></span>toHex<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
4371
4724
|
|
|
4725
|
+
|
|
4372
4726
|
|
|
4373
4727
|
</dt>
|
|
4374
4728
|
<dd>
|
|
@@ -4386,7 +4740,16 @@ another field.</p>
|
|
|
4386
4740
|
|
|
4387
4741
|
|
|
4388
4742
|
|
|
4743
|
+
|
|
4744
|
+
|
|
4745
|
+
|
|
4746
|
+
|
|
4389
4747
|
<dl class="details">
|
|
4748
|
+
|
|
4749
|
+
|
|
4750
|
+
|
|
4751
|
+
|
|
4752
|
+
|
|
4390
4753
|
|
|
4391
4754
|
|
|
4392
4755
|
|
|
@@ -4408,7 +4771,7 @@ another field.</p>
|
|
|
4408
4771
|
|
|
4409
4772
|
<dt class="tag-source">Source:</dt>
|
|
4410
4773
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
4411
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
4774
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2128">line 2128</a>
|
|
4412
4775
|
</li></ul></dd>
|
|
4413
4776
|
|
|
4414
4777
|
|
|
@@ -4487,8 +4850,174 @@ another field.</p>
|
|
|
4487
4850
|
|
|
4488
4851
|
|
|
4489
4852
|
<dt>
|
|
4490
|
-
|
|
4853
|
+
|
|
4854
|
+
<h4 class="name" id="toRaw"><span class="type-signature"></span>toRaw<span class="signature">(includeBinaryAsBase64<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → {<a href="Object.html">Object</a>.<string, *>}</span></h4>
|
|
4491
4855
|
|
|
4856
|
+
|
|
4857
|
+
|
|
4858
|
+
</dt>
|
|
4859
|
+
<dd>
|
|
4860
|
+
|
|
4861
|
+
|
|
4862
|
+
<div class="description">
|
|
4863
|
+
<p>Returns the message's raw payload.</p>
|
|
4864
|
+
</div>
|
|
4865
|
+
|
|
4866
|
+
|
|
4867
|
+
|
|
4868
|
+
|
|
4869
|
+
|
|
4870
|
+
|
|
4871
|
+
|
|
4872
|
+
|
|
4873
|
+
|
|
4874
|
+
<h5>Parameters:</h5>
|
|
4875
|
+
|
|
4876
|
+
|
|
4877
|
+
<table class="params">
|
|
4878
|
+
<thead>
|
|
4879
|
+
<tr>
|
|
4880
|
+
|
|
4881
|
+
<th>Name</th>
|
|
4882
|
+
|
|
4883
|
+
|
|
4884
|
+
<th>Type</th>
|
|
4885
|
+
|
|
4886
|
+
|
|
4887
|
+
<th>Attributes</th>
|
|
4888
|
+
|
|
4889
|
+
|
|
4890
|
+
|
|
4891
|
+
|
|
4892
|
+
<th class="last">Description</th>
|
|
4893
|
+
</tr>
|
|
4894
|
+
</thead>
|
|
4895
|
+
|
|
4896
|
+
<tbody>
|
|
4897
|
+
|
|
4898
|
+
|
|
4899
|
+
<tr>
|
|
4900
|
+
|
|
4901
|
+
<td class="name"><code>includeBinaryAsBase64</code></td>
|
|
4902
|
+
|
|
4903
|
+
|
|
4904
|
+
<td class="type">
|
|
4905
|
+
|
|
4906
|
+
|
|
4907
|
+
<span class="param-type">boolean</span>
|
|
4908
|
+
|
|
4909
|
+
|
|
4910
|
+
|
|
4911
|
+
</td>
|
|
4912
|
+
|
|
4913
|
+
|
|
4914
|
+
<td class="attributes">
|
|
4915
|
+
|
|
4916
|
+
<optional><br>
|
|
4917
|
+
|
|
4918
|
+
|
|
4919
|
+
|
|
4920
|
+
|
|
4921
|
+
|
|
4922
|
+
</td>
|
|
4923
|
+
|
|
4924
|
+
|
|
4925
|
+
|
|
4926
|
+
|
|
4927
|
+
<td class="description last"><p>Whether to include binary data as base64 strings or not, defaults to <code>false</code></p></td>
|
|
4928
|
+
</tr>
|
|
4929
|
+
|
|
4930
|
+
|
|
4931
|
+
</tbody>
|
|
4932
|
+
</table>
|
|
4933
|
+
|
|
4934
|
+
|
|
4935
|
+
|
|
4936
|
+
|
|
4937
|
+
|
|
4938
|
+
<dl class="details">
|
|
4939
|
+
|
|
4940
|
+
|
|
4941
|
+
|
|
4942
|
+
|
|
4943
|
+
|
|
4944
|
+
|
|
4945
|
+
|
|
4946
|
+
|
|
4947
|
+
|
|
4948
|
+
|
|
4949
|
+
|
|
4950
|
+
|
|
4951
|
+
|
|
4952
|
+
|
|
4953
|
+
|
|
4954
|
+
|
|
4955
|
+
|
|
4956
|
+
|
|
4957
|
+
|
|
4958
|
+
|
|
4959
|
+
|
|
4960
|
+
|
|
4961
|
+
|
|
4962
|
+
|
|
4963
|
+
<dt class="tag-source">Source:</dt>
|
|
4964
|
+
<dd class="tag-source"><ul class="dummy"><li>
|
|
4965
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2167">line 2167</a>
|
|
4966
|
+
</li></ul></dd>
|
|
4967
|
+
|
|
4968
|
+
|
|
4969
|
+
|
|
4970
|
+
|
|
4971
|
+
|
|
4972
|
+
|
|
4973
|
+
|
|
4974
|
+
</dl>
|
|
4975
|
+
|
|
4976
|
+
|
|
4977
|
+
|
|
4978
|
+
|
|
4979
|
+
|
|
4980
|
+
|
|
4981
|
+
|
|
4982
|
+
|
|
4983
|
+
|
|
4984
|
+
|
|
4985
|
+
|
|
4986
|
+
|
|
4987
|
+
|
|
4988
|
+
<h5>Returns:</h5>
|
|
4989
|
+
|
|
4990
|
+
|
|
4991
|
+
<div class="param-desc">
|
|
4992
|
+
<p>Raw payload</p>
|
|
4993
|
+
</div>
|
|
4994
|
+
|
|
4995
|
+
|
|
4996
|
+
|
|
4997
|
+
<dl>
|
|
4998
|
+
<dt>
|
|
4999
|
+
Type
|
|
5000
|
+
</dt>
|
|
5001
|
+
<dd>
|
|
5002
|
+
|
|
5003
|
+
<span class="param-type"><a href="Object.html">Object</a>.<string, *></span>
|
|
5004
|
+
|
|
5005
|
+
|
|
5006
|
+
</dd>
|
|
5007
|
+
</dl>
|
|
5008
|
+
|
|
5009
|
+
|
|
5010
|
+
|
|
5011
|
+
|
|
5012
|
+
</dd>
|
|
5013
|
+
|
|
5014
|
+
|
|
5015
|
+
|
|
5016
|
+
<dt>
|
|
5017
|
+
|
|
5018
|
+
<h4 class="name" id="toString"><span class="type-signature"></span>toString<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
5019
|
+
|
|
5020
|
+
|
|
4492
5021
|
|
|
4493
5022
|
</dt>
|
|
4494
5023
|
<dd>
|
|
@@ -4506,7 +5035,16 @@ another field.</p>
|
|
|
4506
5035
|
|
|
4507
5036
|
|
|
4508
5037
|
|
|
5038
|
+
|
|
5039
|
+
|
|
5040
|
+
|
|
5041
|
+
|
|
4509
5042
|
<dl class="details">
|
|
5043
|
+
|
|
5044
|
+
|
|
5045
|
+
|
|
5046
|
+
|
|
5047
|
+
|
|
4510
5048
|
|
|
4511
5049
|
|
|
4512
5050
|
|
|
@@ -4528,7 +5066,7 @@ another field.</p>
|
|
|
4528
5066
|
|
|
4529
5067
|
<dt class="tag-source">Source:</dt>
|
|
4530
5068
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
4531
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
5069
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2262">line 2262</a>
|
|
4532
5070
|
</li></ul></dd>
|
|
4533
5071
|
|
|
4534
5072
|
|
|
@@ -4593,13 +5131,13 @@ another field.</p>
|
|
|
4593
5131
|
</div>
|
|
4594
5132
|
|
|
4595
5133
|
<nav>
|
|
4596
|
-
<h2><a href="index.html">Index</a></h2><h3>Classes</h3><ul><li><a href="ProtoBuf.Builder.html">Builder</a></li><li><a href="ProtoBuf.Builder.Message.html">Message</a></li><li><a href="ProtoBuf.Builder.Service.html">Service</a></li><li><a href="ProtoBuf.DotProto.Parser.html">Parser</a></li><li><a href="ProtoBuf.DotProto.Tokenizer.html">Tokenizer</a></li><li><a href="ProtoBuf.Reflect.Enum.html">Enum</a></li><li><a href="ProtoBuf.Reflect.Enum.Value.html">Value</a></li><li><a href="ProtoBuf.Reflect.Extension.html">Extension</a></li><li><a href="ProtoBuf.Reflect.Message.html">Message</a></li><li><a href="ProtoBuf.Reflect.Message.ExtensionField.html">ExtensionField</a></li><li><a href="ProtoBuf.Reflect.Message.Field.html">Field</a></li><li><a href="ProtoBuf.Reflect.Namespace.html">Namespace</a></li><li><a href="ProtoBuf.Reflect.Service.html">Service</a></li><li><a href="ProtoBuf.Reflect.Service.Method.html">Method</a></li><li><a href="ProtoBuf.Reflect.Service.RPCMethod.html">RPCMethod</a></li><li><a href="ProtoBuf.Reflect.T.html">T</a></li></ul><h3>Namespaces</h3><ul><li><a href="ProtoBuf.html">ProtoBuf</a></li><li><a href="ProtoBuf.DotProto.html">DotProto</a></li><li><a href="ProtoBuf.Reflect.html">Reflect</a></li><li><a href="ProtoBuf.Util.html">Util</a></li></ul>
|
|
5134
|
+
<h2><a href="index.html">Index</a></h2><h3>Classes</h3><ul><li><a href="ProtoBuf.Builder.html">Builder</a></li><li><a href="ProtoBuf.Builder.Message.html">Message</a></li><li><a href="ProtoBuf.Builder.Service.html">Service</a></li><li><a href="ProtoBuf.DotProto.Parser.html">Parser</a></li><li><a href="ProtoBuf.DotProto.Tokenizer.html">Tokenizer</a></li><li><a href="ProtoBuf.Reflect.Enum.html">Enum</a></li><li><a href="ProtoBuf.Reflect.Enum.Value.html">Value</a></li><li><a href="ProtoBuf.Reflect.Extension.html">Extension</a></li><li><a href="ProtoBuf.Reflect.Message.html">Message</a></li><li><a href="ProtoBuf.Reflect.Message.ExtensionField.html">ExtensionField</a></li><li><a href="ProtoBuf.Reflect.Message.Field.html">Field</a></li><li><a href="ProtoBuf.Reflect.Message.OneOf.html">OneOf</a></li><li><a href="ProtoBuf.Reflect.Namespace.html">Namespace</a></li><li><a href="ProtoBuf.Reflect.Service.html">Service</a></li><li><a href="ProtoBuf.Reflect.Service.Method.html">Method</a></li><li><a href="ProtoBuf.Reflect.Service.RPCMethod.html">RPCMethod</a></li><li><a href="ProtoBuf.Reflect.T.html">T</a></li></ul><h3>Namespaces</h3><ul><li><a href="ProtoBuf.html">ProtoBuf</a></li><li><a href="ProtoBuf.DotProto.html">DotProto</a></li><li><a href="ProtoBuf.Reflect.html">Reflect</a></li><li><a href="ProtoBuf.Util.html">Util</a></li></ul>
|
|
4597
5135
|
</nav>
|
|
4598
5136
|
|
|
4599
5137
|
<br clear="both">
|
|
4600
5138
|
|
|
4601
5139
|
<footer>
|
|
4602
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-
|
|
5140
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-alpha10</a> on Mon Nov 24 2014 18:08:27 GMT+0100 (Mitteleuropäische Zeit)
|
|
4603
5141
|
</footer>
|
|
4604
5142
|
|
|
4605
5143
|
<script> prettyPrint(); </script>
|