gremlin 3.7.1 → 3.7.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.
Files changed (118) hide show
  1. package/.eslintrc.js +3 -4
  2. package/.nvmrc +1 -0
  3. package/LICENSE +9 -1
  4. package/NOTICE +1 -1
  5. package/README.md +1 -1
  6. package/doc/AnonymousTraversalSource.html +2 -2
  7. package/doc/Authenticator.html +2 -2
  8. package/doc/Bytecode.html +2 -2
  9. package/doc/CardinalityValue.html +2 -2
  10. package/doc/Client.html +9 -108
  11. package/doc/Connection.html +9 -196
  12. package/doc/DataType.js.html +149 -0
  13. package/doc/DriverRemoteConnection.html +12 -111
  14. package/doc/EdgeLabelVerificationStrategy.html +2 -2
  15. package/doc/Graph.html +2 -2
  16. package/doc/GraphBinaryReader.js.html +132 -0
  17. package/doc/GraphBinaryWriter.js.html +135 -0
  18. package/doc/GraphSON2Reader.html +4 -4
  19. package/doc/GraphSON2Writer.html +5 -5
  20. package/doc/GraphSON3Reader.html +3 -3
  21. package/doc/GraphSON3Writer.html +3 -3
  22. package/doc/GraphTraversal.html +2 -2
  23. package/doc/GraphTraversalSource.html +2 -2
  24. package/doc/HaltedTraverserStrategy.html +2 -2
  25. package/doc/MatchAlgorithmStrategy.html +2 -2
  26. package/doc/P.html +2 -2
  27. package/doc/PartitionStrategy.html +2 -2
  28. package/doc/Path.html +2 -2
  29. package/doc/PlainTextSaslAuthenticator.html +2 -2
  30. package/doc/ProductiveByStrategy.html +2 -2
  31. package/doc/RemoteConnection.html +2 -2
  32. package/doc/RemoteStrategy.html +2 -2
  33. package/doc/RemoteTraversal.html +2 -2
  34. package/doc/ReservedKeysVerificationStrategy.html +2 -2
  35. package/doc/ResponseError.html +2 -2
  36. package/doc/ResultSet.html +7 -95
  37. package/doc/SaslAuthenticator.html +2 -2
  38. package/doc/SaslMechanismBase.html +2 -2
  39. package/doc/SaslMechanismPlain.html +7 -7
  40. package/doc/SeedStrategy.html +2 -2
  41. package/doc/SubgraphStrategy.html +2 -2
  42. package/doc/TextP.html +2 -2
  43. package/doc/Transaction.html +5 -5
  44. package/doc/Translator.html +2 -2
  45. package/doc/TraversalStrategies.html +2 -2
  46. package/doc/TraversalStrategy.html +2 -2
  47. package/doc/TypeSerializer.html +2 -2
  48. package/doc/driver_auth_authenticator.js.html +2 -2
  49. package/doc/driver_auth_mechanisms_sasl-mechanism-base.js.html +2 -2
  50. package/doc/driver_auth_mechanisms_sasl-mechanism-plain.js.html +3 -2
  51. package/doc/driver_auth_plain-text-sasl-authenticator.js.html +2 -2
  52. package/doc/driver_auth_sasl-authenticator.js.html +2 -2
  53. package/doc/driver_client.js.html +2 -5
  54. package/doc/driver_connection.js.html +82 -118
  55. package/doc/driver_driver-remote-connection.js.html +2 -5
  56. package/doc/driver_remote-connection.js.html +2 -2
  57. package/doc/driver_response-error.js.html +2 -2
  58. package/doc/driver_result-set.js.html +2 -11
  59. package/doc/global.html +158 -3
  60. package/doc/index.html +3 -3
  61. package/doc/module.exports.html +4 -4
  62. package/doc/process_anonymous-traversal.js.html +2 -2
  63. package/doc/process_bytecode.js.html +2 -2
  64. package/doc/process_graph-traversal.js.html +2 -2
  65. package/doc/process_transaction.js.html +12 -4
  66. package/doc/process_translator.js.html +2 -2
  67. package/doc/process_traversal-strategy.js.html +2 -2
  68. package/doc/process_traversal.js.html +2 -2
  69. package/doc/structure_graph.js.html +2 -2
  70. package/doc/structure_io_binary_internals_DataType.js.html +2 -2
  71. package/doc/structure_io_binary_internals_GraphBinaryReader.js.html +4 -2
  72. package/doc/structure_io_binary_internals_GraphBinaryWriter.js.html +4 -2
  73. package/doc/structure_io_graph-serializer.js.html +3 -2
  74. package/doc/structure_io_type-serializers.js.html +2 -2
  75. package/doc/utils.js.html +181 -0
  76. package/lib/driver/auth/mechanisms/sasl-mechanism-plain.js +1 -0
  77. package/lib/driver/client.js +0 -3
  78. package/lib/driver/connection.js +80 -116
  79. package/lib/driver/driver-remote-connection.js +0 -3
  80. package/lib/driver/result-set.js +0 -9
  81. package/lib/process/transaction.js +10 -2
  82. package/lib/structure/io/binary/internals/AnySerializer.js +2 -0
  83. package/lib/structure/io/binary/internals/ArraySerializer.js +2 -0
  84. package/lib/structure/io/binary/internals/BigIntegerSerializer.js +2 -0
  85. package/lib/structure/io/binary/internals/BooleanSerializer.js +2 -0
  86. package/lib/structure/io/binary/internals/BulkSetSerializer.js +2 -0
  87. package/lib/structure/io/binary/internals/ByteBufferSerializer.js +2 -0
  88. package/lib/structure/io/binary/internals/ByteSerializer.js +2 -0
  89. package/lib/structure/io/binary/internals/BytecodeSerializer.js +1 -0
  90. package/lib/structure/io/binary/internals/DateSerializer.js +2 -0
  91. package/lib/structure/io/binary/internals/DoubleSerializer.js +2 -0
  92. package/lib/structure/io/binary/internals/EdgeSerializer.js +1 -0
  93. package/lib/structure/io/binary/internals/EnumSerializer.js +1 -0
  94. package/lib/structure/io/binary/internals/FloatSerializer.js +2 -0
  95. package/lib/structure/io/binary/internals/GraphBinaryReader.js +2 -0
  96. package/lib/structure/io/binary/internals/GraphBinaryWriter.js +2 -0
  97. package/lib/structure/io/binary/internals/IntSerializer.js +2 -0
  98. package/lib/structure/io/binary/internals/LambdaSerializer.js +1 -0
  99. package/lib/structure/io/binary/internals/LongSerializer.js +2 -0
  100. package/lib/structure/io/binary/internals/LongSerializerNg.js +2 -0
  101. package/lib/structure/io/binary/internals/MapSerializer.js +2 -0
  102. package/lib/structure/io/binary/internals/PSerializer.js +1 -0
  103. package/lib/structure/io/binary/internals/PathSerializer.js +1 -0
  104. package/lib/structure/io/binary/internals/PropertySerializer.js +1 -0
  105. package/lib/structure/io/binary/internals/ShortSerializer.js +2 -0
  106. package/lib/structure/io/binary/internals/StringSerializer.js +2 -0
  107. package/lib/structure/io/binary/internals/TextPSerializer.js +1 -0
  108. package/lib/structure/io/binary/internals/TraversalStrategySerializer.js +2 -0
  109. package/lib/structure/io/binary/internals/TraverserSerializer.js +1 -0
  110. package/lib/structure/io/binary/internals/UnspecifiedNullSerializer.js +2 -0
  111. package/lib/structure/io/binary/internals/UuidSerializer.js +2 -0
  112. package/lib/structure/io/binary/internals/VertexPropertySerializer.js +1 -0
  113. package/lib/structure/io/binary/internals/VertexSerializer.js +1 -0
  114. package/lib/structure/io/binary/internals/utils.js +2 -0
  115. package/lib/structure/io/graph-serializer.js +1 -0
  116. package/lib/utils.js +40 -29
  117. package/licenses/chai +21 -0
  118. package/package.json +7 -3
@@ -546,105 +546,6 @@
546
546
 
547
547
 
548
548
 
549
- <tr>
550
-
551
- <td class="name"><code>pingEnabled</code></td>
552
-
553
-
554
- <td class="type">
555
-
556
-
557
- <span class="param-type">Boolean</span>
558
-
559
-
560
-
561
- </td>
562
-
563
-
564
- <td class="attributes">
565
-
566
- &lt;optional><br>
567
-
568
-
569
-
570
-
571
-
572
- </td>
573
-
574
-
575
-
576
-
577
- <td class="description last">Setup ping interval. Defaults to: true.</td>
578
- </tr>
579
-
580
-
581
-
582
- <tr>
583
-
584
- <td class="name"><code>pingInterval</code></td>
585
-
586
-
587
- <td class="type">
588
-
589
-
590
- <span class="param-type">Number</span>
591
-
592
-
593
-
594
- </td>
595
-
596
-
597
- <td class="attributes">
598
-
599
- &lt;optional><br>
600
-
601
-
602
-
603
-
604
-
605
- </td>
606
-
607
-
608
-
609
-
610
- <td class="description last">Ping request interval in ms if ping enabled. Defaults to: 60000.</td>
611
- </tr>
612
-
613
-
614
-
615
- <tr>
616
-
617
- <td class="name"><code>pongTimeout</code></td>
618
-
619
-
620
- <td class="type">
621
-
622
-
623
- <span class="param-type">Number</span>
624
-
625
-
626
-
627
- </td>
628
-
629
-
630
- <td class="attributes">
631
-
632
- &lt;optional><br>
633
-
634
-
635
-
636
-
637
-
638
- </td>
639
-
640
-
641
-
642
-
643
- <td class="description last">Timeout of pong response in ms after sending a ping. Defaults to: 30000.</td>
644
- </tr>
645
-
646
-
647
-
648
549
  <tr>
649
550
 
650
551
  <td class="name"><code>agent</code></td>
@@ -721,7 +622,7 @@
721
622
 
722
623
  <dt class="tag-source">Source:</dt>
723
624
  <dd class="tag-source"><ul class="dummy"><li>
724
- <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line54">line 54</a>
625
+ <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line51">line 51</a>
725
626
  </li></ul></dd>
726
627
 
727
628
 
@@ -825,7 +726,7 @@
825
726
 
826
727
  <dt class="tag-source">Source:</dt>
827
728
  <dd class="tag-source"><ul class="dummy"><li>
828
- <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line86">line 86</a>
729
+ <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line80">line 80</a>
829
730
  </li></ul></dd>
830
731
 
831
732
 
@@ -847,94 +748,6 @@
847
748
 
848
749
  <h3 class="subsection-title">Methods</h3>
849
750
 
850
-
851
-
852
-
853
-
854
-
855
-
856
- <h4 class="name" id="_cleanupWebsocket"><span class="type-signature"></span>_cleanupWebsocket<span class="signature">()</span><span class="type-signature"></span></h4>
857
-
858
-
859
-
860
-
861
-
862
-
863
- <div class="description">
864
- clean websocket context
865
- </div>
866
-
867
-
868
-
869
-
870
-
871
-
872
-
873
-
874
-
875
-
876
-
877
-
878
-
879
- <dl class="details">
880
-
881
-
882
-
883
-
884
-
885
-
886
-
887
-
888
-
889
-
890
-
891
-
892
-
893
-
894
-
895
-
896
-
897
-
898
-
899
-
900
-
901
-
902
-
903
-
904
-
905
-
906
- <dt class="tag-source">Source:</dt>
907
- <dd class="tag-source"><ul class="dummy"><li>
908
- <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line388">line 388</a>
909
- </li></ul></dd>
910
-
911
-
912
-
913
-
914
-
915
-
916
-
917
- </dl>
918
-
919
-
920
-
921
-
922
-
923
-
924
-
925
-
926
-
927
-
928
-
929
-
930
-
931
-
932
-
933
-
934
-
935
-
936
-
937
-
938
751
 
939
752
 
940
753
 
@@ -993,7 +806,7 @@
993
806
 
994
807
  <dt class="tag-source">Source:</dt>
995
808
  <dd class="tag-source"><ul class="dummy"><li>
996
- <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line428">line 428</a>
809
+ <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line392">line 392</a>
997
810
  </li></ul></dd>
998
811
 
999
812
 
@@ -1047,7 +860,7 @@
1047
860
 
1048
861
 
1049
862
 
1050
- <h4 class="name" id="open"><span class="type-signature"></span>open<span class="signature">()</span><span class="type-signature"> &rarr; {Promise}</span></h4>
863
+ <h4 class="name" id="open"><span class="type-signature">(async) </span>open<span class="signature">()</span><span class="type-signature"> &rarr; {Promise}</span></h4>
1051
864
 
1052
865
 
1053
866
 
@@ -1099,7 +912,7 @@
1099
912
 
1100
913
  <dt class="tag-source">Source:</dt>
1101
914
  <dd class="tag-source"><ul class="dummy"><li>
1102
- <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line115">line 115</a>
915
+ <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line103">line 103</a>
1103
916
  </li></ul></dd>
1104
917
 
1105
918
 
@@ -1201,7 +1014,7 @@
1201
1014
 
1202
1015
  <dt class="tag-source">Source:</dt>
1203
1016
  <dd class="tag-source"><ul class="dummy"><li>
1204
- <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line205">line 205</a>
1017
+ <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line188">line 188</a>
1205
1018
  </li></ul></dd>
1206
1019
 
1207
1020
 
@@ -1285,7 +1098,7 @@
1285
1098
 
1286
1099
  <dt class="tag-source">Source:</dt>
1287
1100
  <dd class="tag-source"><ul class="dummy"><li>
1288
- <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line172">line 172</a>
1101
+ <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line155">line 155</a>
1289
1102
  </li></ul></dd>
1290
1103
 
1291
1104
 
@@ -1331,13 +1144,13 @@
1331
1144
  </div>
1332
1145
 
1333
1146
  <nav>
1334
- <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="AnonymousTraversalSource.html">AnonymousTraversalSource</a></li><li><a href="Authenticator.html">Authenticator</a></li><li><a href="Bytecode.html">Bytecode</a></li><li><a href="CardinalityValue.html">CardinalityValue</a></li><li><a href="Client.html">Client</a></li><li><a href="Connection.html">Connection</a></li><li><a href="DriverRemoteConnection.html">DriverRemoteConnection</a></li><li><a href="EdgeLabelVerificationStrategy.html">EdgeLabelVerificationStrategy</a></li><li><a href="Graph.html">Graph</a></li><li><a href="GraphSON2Reader.html">GraphSON2Reader</a></li><li><a href="GraphSON2Writer.html">GraphSON2Writer</a></li><li><a href="GraphSON3Reader.html">GraphSON3Reader</a></li><li><a href="GraphSON3Writer.html">GraphSON3Writer</a></li><li><a href="GraphTraversal.html">GraphTraversal</a></li><li><a href="GraphTraversalSource.html">GraphTraversalSource</a></li><li><a href="HaltedTraverserStrategy.html">HaltedTraverserStrategy</a></li><li><a href="MatchAlgorithmStrategy.html">MatchAlgorithmStrategy</a></li><li><a href="module.exports.html">exports</a></li><li><a href="P.html">P</a></li><li><a href="PartitionStrategy.html">PartitionStrategy</a></li><li><a href="Path.html">Path</a></li><li><a href="PlainTextSaslAuthenticator.html">PlainTextSaslAuthenticator</a></li><li><a href="ProductiveByStrategy.html">ProductiveByStrategy</a></li><li><a href="RemoteConnection.html">RemoteConnection</a></li><li><a href="RemoteStrategy.html">RemoteStrategy</a></li><li><a href="RemoteTraversal.html">RemoteTraversal</a></li><li><a href="ReservedKeysVerificationStrategy.html">ReservedKeysVerificationStrategy</a></li><li><a href="ResponseError.html">ResponseError</a></li><li><a href="ResultSet.html">ResultSet</a></li><li><a href="SaslAuthenticator.html">SaslAuthenticator</a></li><li><a href="SaslMechanismBase.html">SaslMechanismBase</a></li><li><a href="SaslMechanismPlain.html">SaslMechanismPlain</a></li><li><a href="SeedStrategy.html">SeedStrategy</a></li><li><a href="SubgraphStrategy.html">SubgraphStrategy</a></li><li><a href="TextP.html">TextP</a></li><li><a href="Transaction.html">Transaction</a></li><li><a href="Translator.html">Translator</a></li><li><a href="TraversalStrategies.html">TraversalStrategies</a></li><li><a href="TraversalStrategy.html">TraversalStrategy</a></li><li><a href="TypeSerializer.html">TypeSerializer</a></li></ul><h3>Global</h3><ul><li><a href="global.html#DataType">DataType</a></li><li><a href="global.html#statics">statics</a></li></ul>
1147
+ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="AnonymousTraversalSource.html">AnonymousTraversalSource</a></li><li><a href="Authenticator.html">Authenticator</a></li><li><a href="Bytecode.html">Bytecode</a></li><li><a href="CardinalityValue.html">CardinalityValue</a></li><li><a href="Client.html">Client</a></li><li><a href="Connection.html">Connection</a></li><li><a href="DriverRemoteConnection.html">DriverRemoteConnection</a></li><li><a href="EdgeLabelVerificationStrategy.html">EdgeLabelVerificationStrategy</a></li><li><a href="Graph.html">Graph</a></li><li><a href="GraphSON2Reader.html">GraphSON2Reader</a></li><li><a href="GraphSON2Writer.html">GraphSON2Writer</a></li><li><a href="GraphSON3Reader.html">GraphSON3Reader</a></li><li><a href="GraphSON3Writer.html">GraphSON3Writer</a></li><li><a href="GraphTraversal.html">GraphTraversal</a></li><li><a href="GraphTraversalSource.html">GraphTraversalSource</a></li><li><a href="HaltedTraverserStrategy.html">HaltedTraverserStrategy</a></li><li><a href="MatchAlgorithmStrategy.html">MatchAlgorithmStrategy</a></li><li><a href="module.exports.html">exports</a></li><li><a href="P.html">P</a></li><li><a href="PartitionStrategy.html">PartitionStrategy</a></li><li><a href="Path.html">Path</a></li><li><a href="PlainTextSaslAuthenticator.html">PlainTextSaslAuthenticator</a></li><li><a href="ProductiveByStrategy.html">ProductiveByStrategy</a></li><li><a href="RemoteConnection.html">RemoteConnection</a></li><li><a href="RemoteStrategy.html">RemoteStrategy</a></li><li><a href="RemoteTraversal.html">RemoteTraversal</a></li><li><a href="ReservedKeysVerificationStrategy.html">ReservedKeysVerificationStrategy</a></li><li><a href="ResponseError.html">ResponseError</a></li><li><a href="ResultSet.html">ResultSet</a></li><li><a href="SaslAuthenticator.html">SaslAuthenticator</a></li><li><a href="SaslMechanismBase.html">SaslMechanismBase</a></li><li><a href="SaslMechanismPlain.html">SaslMechanismPlain</a></li><li><a href="SeedStrategy.html">SeedStrategy</a></li><li><a href="SubgraphStrategy.html">SubgraphStrategy</a></li><li><a href="TextP.html">TextP</a></li><li><a href="Transaction.html">Transaction</a></li><li><a href="Translator.html">Translator</a></li><li><a href="TraversalStrategies.html">TraversalStrategies</a></li><li><a href="TraversalStrategy.html">TraversalStrategy</a></li><li><a href="TypeSerializer.html">TypeSerializer</a></li></ul><h3>Global</h3><ul><li><a href="global.html#DataType">DataType</a></li><li><a href="global.html#statics">statics</a></li><li><a href="global.html#toArrayBuffer">toArrayBuffer</a></li></ul>
1335
1148
  </nav>
1336
1149
 
1337
1150
  <br class="clear">
1338
1151
 
1339
1152
  <footer>
1340
- Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Mon Dec 04 2023 12:21:39 GMT-0800 (Pacific Standard Time)
1153
+ Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Mon Apr 15 2024 11:06:40 GMT-0700 (Pacific Daylight Time)
1341
1154
  </footer>
1342
1155
 
1343
1156
  <script> prettyPrint(); </script>
@@ -0,0 +1,149 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>JSDoc: Source: DataType.js</title>
6
+
7
+ <script src="scripts/prettify/prettify.js"> </script>
8
+ <script src="scripts/prettify/lang-css.js"> </script>
9
+ <!--[if lt IE 9]>
10
+ <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
11
+ <![endif]-->
12
+ <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
13
+ <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
14
+ </head>
15
+
16
+ <body>
17
+
18
+ <div id="main">
19
+
20
+ <h1 class="page-title">Source: DataType.js</h1>
21
+
22
+
23
+
24
+
25
+
26
+
27
+ <section>
28
+ <article>
29
+ <pre class="prettyprint source linenums"><code>/*
30
+ * Licensed to the Apache Software Foundation (ASF) under one
31
+ * or more contributor license agreements. See the NOTICE file
32
+ * distributed with this work for additional information
33
+ * regarding copyright ownership. The ASF licenses this file
34
+ * to you under the Apache License, Version 2.0 (the
35
+ * "License"); you may not use this file except in compliance
36
+ * with the License. You may obtain a copy of the License at
37
+ *
38
+ * http://www.apache.org/licenses/LICENSE-2.0
39
+ *
40
+ * Unless required by applicable law or agreed to in writing,
41
+ * software distributed under the License is distributed on an
42
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
43
+ * KIND, either express or implied. See the License for the
44
+ * specific language governing permissions and limitations
45
+ * under the License.
46
+ */
47
+
48
+ /**
49
+ * @author Igor Ostapenko
50
+ */
51
+
52
+ /**
53
+ * Represents a GraphBinary data type.
54
+ *
55
+ * See org.apache.tinkerpop.gremlin.structure.io.binary.DataType Java class.
56
+ */
57
+ const DataType = {
58
+ INT: 0x01,
59
+ LONG: 0x02,
60
+ STRING: 0x03,
61
+ DATE: 0x04,
62
+ TIMESTAMP: 0x05,
63
+ CLASS: 0x06,
64
+ DOUBLE: 0x07,
65
+ FLOAT: 0x08,
66
+ LIST: 0x09,
67
+ MAP: 0x0a,
68
+ SET: 0x0b,
69
+ UUID: 0x0c,
70
+ EDGE: 0x0d,
71
+ PATH: 0x0e,
72
+ PROPERTY: 0x0f,
73
+ GRAPH: 0x10,
74
+ VERTEX: 0x11,
75
+ VERTEXPROPERTY: 0x12,
76
+ BARRIER: 0x13,
77
+ BINDING: 0x14,
78
+ BYTECODE: 0x15,
79
+ CARDINALITY: 0x16,
80
+ COLUMN: 0x17,
81
+ DIRECTION: 0x18,
82
+ OPERATOR: 0x19,
83
+ ORDER: 0x1a,
84
+ PICK: 0x1b,
85
+ POP: 0x1c,
86
+ LAMBDA: 0x1d,
87
+ P: 0x1e,
88
+ SCOPE: 0x1f,
89
+ T: 0x20,
90
+ TRAVERSER: 0x21,
91
+ BIGDECIMAL: 0x22,
92
+ BIGINTEGER: 0x23,
93
+ BYTE: 0x24,
94
+ BYTEBUFFER: 0x25,
95
+ SHORT: 0x26,
96
+ BOOLEAN: 0x27,
97
+ TEXTP: 0x28,
98
+ TRAVERSALSTRATEGY: 0x29,
99
+ BULKSET: 0x2a,
100
+ TREE: 0x2b,
101
+ METRICS: 0x2c,
102
+ TRAVERSALMETRICS: 0x2d,
103
+ MERGE: 0x2e,
104
+ DT: 0x2f,
105
+
106
+ CHAR: 0x80,
107
+ DURATION: 0x81,
108
+ INETADDRESS: 0x82,
109
+ INSTANT: 0x83,
110
+ LOCALDATE: 0x84,
111
+ LOCALDATETIME: 0x85,
112
+ LOCALTIME: 0x86,
113
+ MONTHDAY: 0x87,
114
+ OFFSETDATETIME: 0x88,
115
+ OFFSETTIME: 0x89,
116
+ PERIOD: 0x8a,
117
+ YEAR: 0x8b,
118
+ YEARMONTH: 0x8c,
119
+ ZONEDATETIME: 0x8d,
120
+ ZONEOFFSET: 0x8e,
121
+
122
+ CUSTOM: 0,
123
+ UNSPECIFIED_NULL: 0xfe,
124
+ };
125
+
126
+ export default DataType;
127
+ </code></pre>
128
+ </article>
129
+ </section>
130
+
131
+
132
+
133
+
134
+ </div>
135
+
136
+ <nav>
137
+ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="module.exports.html">exports</a></li></ul><h3>Global</h3><ul><li><a href="global.html#DataType">DataType</a></li></ul>
138
+ </nav>
139
+
140
+ <br class="clear">
141
+
142
+ <footer>
143
+ Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Mon Apr 08 2024 22:33:46 GMT-0700 (Pacific Daylight Time)
144
+ </footer>
145
+
146
+ <script> prettyPrint(); </script>
147
+ <script src="scripts/linenumber.js"> </script>
148
+ </body>
149
+ </html>
@@ -546,105 +546,6 @@
546
546
 
547
547
 
548
548
 
549
- <tr>
550
-
551
- <td class="name"><code>pingEnabled</code></td>
552
-
553
-
554
- <td class="type">
555
-
556
-
557
- <span class="param-type">Boolean</span>
558
-
559
-
560
-
561
- </td>
562
-
563
-
564
- <td class="attributes">
565
-
566
- &lt;optional><br>
567
-
568
-
569
-
570
-
571
-
572
- </td>
573
-
574
-
575
-
576
-
577
- <td class="description last">Setup ping interval. Defaults to: true.</td>
578
- </tr>
579
-
580
-
581
-
582
- <tr>
583
-
584
- <td class="name"><code>pingInterval</code></td>
585
-
586
-
587
- <td class="type">
588
-
589
-
590
- <span class="param-type">Number</span>
591
-
592
-
593
-
594
- </td>
595
-
596
-
597
- <td class="attributes">
598
-
599
- &lt;optional><br>
600
-
601
-
602
-
603
-
604
-
605
- </td>
606
-
607
-
608
-
609
-
610
- <td class="description last">Ping request interval in ms if ping enabled. Defaults to: 60000.</td>
611
- </tr>
612
-
613
-
614
-
615
- <tr>
616
-
617
- <td class="name"><code>pongTimeout</code></td>
618
-
619
-
620
- <td class="type">
621
-
622
-
623
- <span class="param-type">Number</span>
624
-
625
-
626
-
627
- </td>
628
-
629
-
630
- <td class="attributes">
631
-
632
- &lt;optional><br>
633
-
634
-
635
-
636
-
637
-
638
- </td>
639
-
640
-
641
-
642
-
643
- <td class="description last">Timeout of pong response in ms after sending a ping. Defaults to: 30000.</td>
644
- </tr>
645
-
646
-
647
-
648
549
  <tr>
649
550
 
650
551
  <td class="name"><code>agent</code></td>
@@ -811,7 +712,7 @@
811
712
 
812
713
  <dt class="tag-source">Source:</dt>
813
714
  <dd class="tag-source"><ul class="dummy"><li>
814
- <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line69">line 69</a>
715
+ <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line66">line 66</a>
815
716
  </li></ul></dd>
816
717
 
817
718
 
@@ -869,7 +770,7 @@
869
770
 
870
771
  <dt class="tag-source">Source:</dt>
871
772
  <dd class="tag-source"><ul class="dummy"><li>
872
- <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line114">line 114</a>
773
+ <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line111">line 111</a>
873
774
  </li></ul></dd>
874
775
 
875
776
 
@@ -945,7 +846,7 @@
945
846
 
946
847
  <dt class="tag-source">Source:</dt>
947
848
  <dd class="tag-source"><ul class="dummy"><li>
948
- <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line134">line 134</a>
849
+ <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line131">line 131</a>
949
850
  </li></ul></dd>
950
851
 
951
852
 
@@ -1029,7 +930,7 @@
1029
930
 
1030
931
  <dt class="tag-source">Source:</dt>
1031
932
  <dd class="tag-source"><ul class="dummy"><li>
1032
- <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line129">line 129</a>
933
+ <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line126">line 126</a>
1033
934
  </li></ul></dd>
1034
935
 
1035
936
 
@@ -1113,7 +1014,7 @@
1113
1014
 
1114
1015
  <dt class="tag-source">Source:</dt>
1115
1016
  <dd class="tag-source"><ul class="dummy"><li>
1116
- <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line119">line 119</a>
1017
+ <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line116">line 116</a>
1117
1018
  </li></ul></dd>
1118
1019
 
1119
1020
 
@@ -1197,7 +1098,7 @@
1197
1098
 
1198
1099
  <dt class="tag-source">Source:</dt>
1199
1100
  <dd class="tag-source"><ul class="dummy"><li>
1200
- <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line102">line 102</a>
1101
+ <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line99">line 99</a>
1201
1102
  </li></ul></dd>
1202
1103
 
1203
1104
 
@@ -1281,7 +1182,7 @@
1281
1182
 
1282
1183
  <dt class="tag-source">Source:</dt>
1283
1184
  <dd class="tag-source"><ul class="dummy"><li>
1284
- <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line64">line 64</a>
1185
+ <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line61">line 61</a>
1285
1186
  </li></ul></dd>
1286
1187
 
1287
1188
 
@@ -1365,7 +1266,7 @@
1365
1266
 
1366
1267
  <dt class="tag-source">Source:</dt>
1367
1268
  <dd class="tag-source"><ul class="dummy"><li>
1368
- <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line139">line 139</a>
1269
+ <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line136">line 136</a>
1369
1270
  </li></ul></dd>
1370
1271
 
1371
1272
 
@@ -1449,7 +1350,7 @@
1449
1350
 
1450
1351
  <dt class="tag-source">Source:</dt>
1451
1352
  <dd class="tag-source"><ul class="dummy"><li>
1452
- <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line124">line 124</a>
1353
+ <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line121">line 121</a>
1453
1354
  </li></ul></dd>
1454
1355
 
1455
1356
 
@@ -1533,7 +1434,7 @@
1533
1434
 
1534
1435
  <dt class="tag-source">Source:</dt>
1535
1436
  <dd class="tag-source"><ul class="dummy"><li>
1536
- <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line74">line 74</a>
1437
+ <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line71">line 71</a>
1537
1438
  </li></ul></dd>
1538
1439
 
1539
1440
 
@@ -1579,13 +1480,13 @@
1579
1480
  </div>
1580
1481
 
1581
1482
  <nav>
1582
- <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="AnonymousTraversalSource.html">AnonymousTraversalSource</a></li><li><a href="Authenticator.html">Authenticator</a></li><li><a href="Bytecode.html">Bytecode</a></li><li><a href="CardinalityValue.html">CardinalityValue</a></li><li><a href="Client.html">Client</a></li><li><a href="Connection.html">Connection</a></li><li><a href="DriverRemoteConnection.html">DriverRemoteConnection</a></li><li><a href="EdgeLabelVerificationStrategy.html">EdgeLabelVerificationStrategy</a></li><li><a href="Graph.html">Graph</a></li><li><a href="GraphSON2Reader.html">GraphSON2Reader</a></li><li><a href="GraphSON2Writer.html">GraphSON2Writer</a></li><li><a href="GraphSON3Reader.html">GraphSON3Reader</a></li><li><a href="GraphSON3Writer.html">GraphSON3Writer</a></li><li><a href="GraphTraversal.html">GraphTraversal</a></li><li><a href="GraphTraversalSource.html">GraphTraversalSource</a></li><li><a href="HaltedTraverserStrategy.html">HaltedTraverserStrategy</a></li><li><a href="MatchAlgorithmStrategy.html">MatchAlgorithmStrategy</a></li><li><a href="module.exports.html">exports</a></li><li><a href="P.html">P</a></li><li><a href="PartitionStrategy.html">PartitionStrategy</a></li><li><a href="Path.html">Path</a></li><li><a href="PlainTextSaslAuthenticator.html">PlainTextSaslAuthenticator</a></li><li><a href="ProductiveByStrategy.html">ProductiveByStrategy</a></li><li><a href="RemoteConnection.html">RemoteConnection</a></li><li><a href="RemoteStrategy.html">RemoteStrategy</a></li><li><a href="RemoteTraversal.html">RemoteTraversal</a></li><li><a href="ReservedKeysVerificationStrategy.html">ReservedKeysVerificationStrategy</a></li><li><a href="ResponseError.html">ResponseError</a></li><li><a href="ResultSet.html">ResultSet</a></li><li><a href="SaslAuthenticator.html">SaslAuthenticator</a></li><li><a href="SaslMechanismBase.html">SaslMechanismBase</a></li><li><a href="SaslMechanismPlain.html">SaslMechanismPlain</a></li><li><a href="SeedStrategy.html">SeedStrategy</a></li><li><a href="SubgraphStrategy.html">SubgraphStrategy</a></li><li><a href="TextP.html">TextP</a></li><li><a href="Transaction.html">Transaction</a></li><li><a href="Translator.html">Translator</a></li><li><a href="TraversalStrategies.html">TraversalStrategies</a></li><li><a href="TraversalStrategy.html">TraversalStrategy</a></li><li><a href="TypeSerializer.html">TypeSerializer</a></li></ul><h3>Global</h3><ul><li><a href="global.html#DataType">DataType</a></li><li><a href="global.html#statics">statics</a></li></ul>
1483
+ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="AnonymousTraversalSource.html">AnonymousTraversalSource</a></li><li><a href="Authenticator.html">Authenticator</a></li><li><a href="Bytecode.html">Bytecode</a></li><li><a href="CardinalityValue.html">CardinalityValue</a></li><li><a href="Client.html">Client</a></li><li><a href="Connection.html">Connection</a></li><li><a href="DriverRemoteConnection.html">DriverRemoteConnection</a></li><li><a href="EdgeLabelVerificationStrategy.html">EdgeLabelVerificationStrategy</a></li><li><a href="Graph.html">Graph</a></li><li><a href="GraphSON2Reader.html">GraphSON2Reader</a></li><li><a href="GraphSON2Writer.html">GraphSON2Writer</a></li><li><a href="GraphSON3Reader.html">GraphSON3Reader</a></li><li><a href="GraphSON3Writer.html">GraphSON3Writer</a></li><li><a href="GraphTraversal.html">GraphTraversal</a></li><li><a href="GraphTraversalSource.html">GraphTraversalSource</a></li><li><a href="HaltedTraverserStrategy.html">HaltedTraverserStrategy</a></li><li><a href="MatchAlgorithmStrategy.html">MatchAlgorithmStrategy</a></li><li><a href="module.exports.html">exports</a></li><li><a href="P.html">P</a></li><li><a href="PartitionStrategy.html">PartitionStrategy</a></li><li><a href="Path.html">Path</a></li><li><a href="PlainTextSaslAuthenticator.html">PlainTextSaslAuthenticator</a></li><li><a href="ProductiveByStrategy.html">ProductiveByStrategy</a></li><li><a href="RemoteConnection.html">RemoteConnection</a></li><li><a href="RemoteStrategy.html">RemoteStrategy</a></li><li><a href="RemoteTraversal.html">RemoteTraversal</a></li><li><a href="ReservedKeysVerificationStrategy.html">ReservedKeysVerificationStrategy</a></li><li><a href="ResponseError.html">ResponseError</a></li><li><a href="ResultSet.html">ResultSet</a></li><li><a href="SaslAuthenticator.html">SaslAuthenticator</a></li><li><a href="SaslMechanismBase.html">SaslMechanismBase</a></li><li><a href="SaslMechanismPlain.html">SaslMechanismPlain</a></li><li><a href="SeedStrategy.html">SeedStrategy</a></li><li><a href="SubgraphStrategy.html">SubgraphStrategy</a></li><li><a href="TextP.html">TextP</a></li><li><a href="Transaction.html">Transaction</a></li><li><a href="Translator.html">Translator</a></li><li><a href="TraversalStrategies.html">TraversalStrategies</a></li><li><a href="TraversalStrategy.html">TraversalStrategy</a></li><li><a href="TypeSerializer.html">TypeSerializer</a></li></ul><h3>Global</h3><ul><li><a href="global.html#DataType">DataType</a></li><li><a href="global.html#statics">statics</a></li><li><a href="global.html#toArrayBuffer">toArrayBuffer</a></li></ul>
1583
1484
  </nav>
1584
1485
 
1585
1486
  <br class="clear">
1586
1487
 
1587
1488
  <footer>
1588
- Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Mon Dec 04 2023 12:21:39 GMT-0800 (Pacific Standard Time)
1489
+ Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Mon Apr 15 2024 11:06:40 GMT-0700 (Pacific Daylight Time)
1589
1490
  </footer>
1590
1491
 
1591
1492
  <script> prettyPrint(); </script>