gremlin 3.5.1 → 3.5.4

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 (128) hide show
  1. package/.eslintrc.js +155 -0
  2. package/.prettierrc.js +29 -0
  3. package/Gruntfile.js +15 -16
  4. package/doc/AnonymousTraversalSource.html +5 -5
  5. package/doc/Authenticator.html +2 -2
  6. package/doc/Bytecode.html +7 -7
  7. package/doc/Client.html +138 -64
  8. package/doc/Connection.html +93 -9
  9. package/doc/DriverRemoteConnection.html +11 -11
  10. package/doc/EdgeLabelVerificationStrategy.html +3 -3
  11. package/doc/Graph.html +2 -2
  12. package/doc/GraphSON2Reader.html +4 -4
  13. package/doc/GraphSON2Writer.html +3 -3
  14. package/doc/GraphSON3Reader.html +3 -3
  15. package/doc/GraphSON3Writer.html +3 -3
  16. package/doc/GraphTraversal.html +107 -107
  17. package/doc/GraphTraversalSource.html +19 -19
  18. package/doc/HaltedTraverserStrategy.html +3 -3
  19. package/doc/MatchAlgorithmStrategy.html +3 -3
  20. package/doc/P.html +13 -13
  21. package/doc/PartitionStrategy.html +3 -3
  22. package/doc/Path.html +2 -2
  23. package/doc/PlainTextSaslAuthenticator.html +2 -2
  24. package/doc/ProductiveByStrategy.html +288 -0
  25. package/doc/RemoteConnection.html +10 -10
  26. package/doc/RemoteStrategy.html +4 -4
  27. package/doc/RemoteTraversal.html +3 -3
  28. package/doc/ReservedKeysVerificationStrategy.html +3 -3
  29. package/doc/ResponseError.html +2 -2
  30. package/doc/ResultSet.html +7 -7
  31. package/doc/SaslAuthenticator.html +2 -2
  32. package/doc/SaslMechanismBase.html +2 -2
  33. package/doc/SaslMechanismPlain.html +6 -6
  34. package/doc/SeedStrategy.html +288 -0
  35. package/doc/SubgraphStrategy.html +3 -3
  36. package/doc/TextP.html +10 -10
  37. package/doc/Transaction.html +6 -6
  38. package/doc/Translator.html +198 -4
  39. package/doc/TraversalStrategies.html +5 -5
  40. package/doc/TraversalStrategy.html +3 -3
  41. package/doc/TypeSerializer.html +2 -2
  42. package/doc/driver_auth_authenticator.js.html +4 -4
  43. package/doc/driver_auth_mechanisms_sasl-mechanism-base.js.html +3 -3
  44. package/doc/driver_auth_mechanisms_sasl-mechanism-plain.js.html +26 -17
  45. package/doc/driver_auth_plain-text-sasl-authenticator.js.html +7 -7
  46. package/doc/driver_auth_sasl-authenticator.js.html +3 -3
  47. package/doc/driver_client.js.html +73 -23
  48. package/doc/driver_connection.js.html +134 -92
  49. package/doc/driver_driver-remote-connection.js.html +12 -11
  50. package/doc/driver_remote-connection.js.html +4 -5
  51. package/doc/driver_response-error.js.html +5 -4
  52. package/doc/driver_result-set.js.html +4 -4
  53. package/doc/global.html +264 -3
  54. package/doc/index.html +2 -2
  55. package/doc/module.exports.html +301 -0
  56. package/doc/process_anonymous-traversal.js.html +4 -4
  57. package/doc/process_bytecode.js.html +11 -9
  58. package/doc/process_graph-traversal.js.html +194 -143
  59. package/doc/process_transaction.js.html +16 -9
  60. package/doc/process_translator.js.html +53 -37
  61. package/doc/process_traversal-strategy.js.html +70 -53
  62. package/doc/process_traversal.js.html +101 -108
  63. package/doc/structure_graph.js.html +7 -7
  64. package/doc/structure_io_binary_internals_DataType.js.html +148 -0
  65. package/doc/structure_io_binary_internals_GraphBinaryReader.js.html +131 -0
  66. package/doc/structure_io_binary_internals_GraphBinaryWriter.js.html +134 -0
  67. package/doc/structure_io_graph-serializer.js.html +65 -18
  68. package/doc/structure_io_type-serializers.js.html +86 -89
  69. package/index.js +5 -5
  70. package/lib/driver/auth/authenticator.js +2 -2
  71. package/lib/driver/auth/mechanisms/sasl-mechanism-base.js +1 -1
  72. package/lib/driver/auth/mechanisms/sasl-mechanism-plain.js +24 -15
  73. package/lib/driver/auth/plain-text-sasl-authenticator.js +5 -5
  74. package/lib/driver/auth/sasl-authenticator.js +1 -1
  75. package/lib/driver/client.js +71 -21
  76. package/lib/driver/connection.js +132 -90
  77. package/lib/driver/driver-remote-connection.js +10 -9
  78. package/lib/driver/remote-connection.js +2 -3
  79. package/lib/driver/response-error.js +2 -2
  80. package/lib/driver/result-set.js +1 -2
  81. package/lib/process/anonymous-traversal.js +1 -2
  82. package/lib/process/bytecode.js +9 -7
  83. package/lib/process/graph-traversal.js +191 -141
  84. package/lib/process/transaction.js +13 -7
  85. package/lib/process/translator.js +50 -35
  86. package/lib/process/traversal-strategy.js +67 -51
  87. package/lib/process/traversal.js +99 -106
  88. package/lib/structure/graph.js +5 -5
  89. package/lib/structure/io/binary/GraphBinary.js +109 -0
  90. package/lib/structure/io/binary/internals/AnySerializer.js +95 -0
  91. package/lib/structure/io/binary/internals/ArraySerializer.js +135 -0
  92. package/lib/structure/io/binary/internals/BigIntegerSerializer.js +151 -0
  93. package/lib/structure/io/binary/internals/BooleanSerializer.js +103 -0
  94. package/lib/structure/io/binary/internals/BulkSetSerializer.js +124 -0
  95. package/lib/structure/io/binary/internals/ByteBufferSerializer.js +124 -0
  96. package/lib/structure/io/binary/internals/ByteSerializer.js +95 -0
  97. package/lib/structure/io/binary/internals/BytecodeSerializer.js +249 -0
  98. package/lib/structure/io/binary/internals/DataType.js +97 -0
  99. package/lib/structure/io/binary/internals/DateSerializer.js +103 -0
  100. package/lib/structure/io/binary/internals/DoubleSerializer.js +99 -0
  101. package/lib/structure/io/binary/internals/EdgeSerializer.js +215 -0
  102. package/lib/structure/io/binary/internals/EnumSerializer.js +148 -0
  103. package/lib/structure/io/binary/internals/FloatSerializer.js +99 -0
  104. package/lib/structure/io/binary/internals/GraphBinaryReader.js +80 -0
  105. package/lib/structure/io/binary/internals/GraphBinaryWriter.js +83 -0
  106. package/lib/structure/io/binary/internals/IntSerializer.js +112 -0
  107. package/lib/structure/io/binary/internals/LambdaSerializer.js +70 -0
  108. package/lib/structure/io/binary/internals/LongSerializer.js +107 -0
  109. package/lib/structure/io/binary/internals/LongSerializerNg.js +102 -0
  110. package/lib/structure/io/binary/internals/MapSerializer.js +153 -0
  111. package/lib/structure/io/binary/internals/NumberSerializationStrategy.js +68 -0
  112. package/lib/structure/io/binary/internals/PSerializer.js +151 -0
  113. package/lib/structure/io/binary/internals/PathSerializer.js +123 -0
  114. package/lib/structure/io/binary/internals/PropertySerializer.js +141 -0
  115. package/lib/structure/io/binary/internals/ShortSerializer.js +99 -0
  116. package/lib/structure/io/binary/internals/StringSerializer.js +114 -0
  117. package/lib/structure/io/binary/internals/TextPSerializer.js +145 -0
  118. package/lib/structure/io/binary/internals/TraversalStrategySerializer.js +72 -0
  119. package/lib/structure/io/binary/internals/TraverserSerializer.js +123 -0
  120. package/lib/structure/io/binary/internals/UnspecifiedNullSerializer.js +75 -0
  121. package/lib/structure/io/binary/internals/UuidSerializer.js +119 -0
  122. package/lib/structure/io/binary/internals/VertexPropertySerializer.js +172 -0
  123. package/lib/structure/io/binary/internals/VertexSerializer.js +135 -0
  124. package/lib/structure/io/binary/internals/utils.js +59 -0
  125. package/lib/structure/io/graph-serializer.js +62 -16
  126. package/lib/structure/io/type-serializers.js +84 -87
  127. package/lib/utils.js +15 -10
  128. package/package.json +21 -8
package/doc/Client.html CHANGED
@@ -683,7 +683,7 @@
683
683
 
684
684
  <dt class="tag-source">Source:</dt>
685
685
  <dd class="tag-source"><ul class="dummy"><li>
686
- <a href="driver_client.js.html">driver/client.js</a>, <a href="driver_client.js.html#line72">line 72</a>
686
+ <a href="driver_client.js.html">driver/client.js</a>, <a href="driver_client.js.html#line71">line 71</a>
687
687
  </li></ul></dd>
688
688
 
689
689
 
@@ -835,7 +835,7 @@
835
835
 
836
836
  <dt class="tag-source">Source:</dt>
837
837
  <dd class="tag-source"><ul class="dummy"><li>
838
- <a href="driver_client.js.html">driver/client.js</a>, <a href="driver_client.js.html#line130">line 130</a>
838
+ <a href="driver_client.js.html">driver/client.js</a>, <a href="driver_client.js.html#line180">line 180</a>
839
839
  </li></ul></dd>
840
840
 
841
841
 
@@ -924,7 +924,7 @@ send session close request before connection close if session mode
924
924
 
925
925
  <dt class="tag-source">Source:</dt>
926
926
  <dd class="tag-source"><ul class="dummy"><li>
927
- <a href="driver_client.js.html">driver/client.js</a>, <a href="driver_client.js.html#line121">line 121</a>
927
+ <a href="driver_client.js.html">driver/client.js</a>, <a href="driver_client.js.html#line167">line 167</a>
928
928
  </li></ul></dd>
929
929
 
930
930
 
@@ -1030,7 +1030,7 @@ send session close request before connection close if session mode
1030
1030
 
1031
1031
  <dt class="tag-source">Source:</dt>
1032
1032
  <dd class="tag-source"><ul class="dummy"><li>
1033
- <a href="driver_client.js.html">driver/client.js</a>, <a href="driver_client.js.html#line64">line 64</a>
1033
+ <a href="driver_client.js.html">driver/client.js</a>, <a href="driver_client.js.html#line63">line 63</a>
1034
1034
  </li></ul></dd>
1035
1035
 
1036
1036
 
@@ -1208,7 +1208,7 @@ send session close request before connection close if session mode
1208
1208
 
1209
1209
  <dt class="tag-source">Source:</dt>
1210
1210
  <dd class="tag-source"><ul class="dummy"><li>
1211
- <a href="driver_client.js.html">driver/client.js</a>, <a href="driver_client.js.html#line139">line 139</a>
1211
+ <a href="driver_client.js.html">driver/client.js</a>, <a href="driver_client.js.html#line189">line 189</a>
1212
1212
  </li></ul></dd>
1213
1213
 
1214
1214
 
@@ -1244,7 +1244,7 @@ send session close request before connection close if session mode
1244
1244
 
1245
1245
 
1246
1246
 
1247
- <h4 class="name" id="submit"><span class="type-signature"></span>submit<span class="signature">(message, bindings<span class="signature-attributes">opt</span>, requestOptions<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Promise}</span></h4>
1247
+ <h4 class="name" id="stream"><span class="type-signature"></span>stream<span class="signature">(message, bindings<span class="signature-attributes">opt</span>, requestOptions<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {ReadableStream}</span></h4>
1248
1248
 
1249
1249
 
1250
1250
 
@@ -1252,7 +1252,7 @@ send session close request before connection close if session mode
1252
1252
 
1253
1253
 
1254
1254
  <div class="description">
1255
- Send a request to the Gremlin Server, can send a script or bytecode steps.
1255
+ Send a request to the Gremlin Server and receive a stream for the results, can send a script or bytecode steps.
1256
1256
  </div>
1257
1257
 
1258
1258
 
@@ -1363,7 +1363,7 @@ send session close request before connection close if session mode
1363
1363
  <td class="type">
1364
1364
 
1365
1365
 
1366
- <span class="param-type">Object</span>
1366
+ <span class="param-type"><a href="global.html#RequestOptions">RequestOptions</a></span>
1367
1367
 
1368
1368
 
1369
1369
 
@@ -1383,9 +1383,122 @@ send session close request before connection close if session mode
1383
1383
 
1384
1384
 
1385
1385
 
1386
- <td class="description last">Configuration specific to the current request.
1387
- <h6>Properties</h6>
1388
-
1386
+ <td class="description last">Configuration specific to the current request.</td>
1387
+ </tr>
1388
+
1389
+
1390
+ </tbody>
1391
+ </table>
1392
+
1393
+
1394
+
1395
+
1396
+
1397
+
1398
+ <dl class="details">
1399
+
1400
+
1401
+
1402
+
1403
+
1404
+
1405
+
1406
+
1407
+
1408
+
1409
+
1410
+
1411
+
1412
+
1413
+
1414
+
1415
+
1416
+
1417
+
1418
+
1419
+
1420
+
1421
+
1422
+
1423
+
1424
+
1425
+ <dt class="tag-source">Source:</dt>
1426
+ <dd class="tag-source"><ul class="dummy"><li>
1427
+ <a href="driver_client.js.html">driver/client.js</a>, <a href="driver_client.js.html#line130">line 130</a>
1428
+ </li></ul></dd>
1429
+
1430
+
1431
+
1432
+
1433
+
1434
+
1435
+
1436
+ </dl>
1437
+
1438
+
1439
+
1440
+
1441
+
1442
+
1443
+
1444
+
1445
+
1446
+
1447
+
1448
+
1449
+
1450
+
1451
+
1452
+ <h5>Returns:</h5>
1453
+
1454
+
1455
+
1456
+
1457
+ <dl>
1458
+ <dt>
1459
+ Type
1460
+ </dt>
1461
+ <dd>
1462
+
1463
+ <span class="param-type">ReadableStream</span>
1464
+
1465
+
1466
+ </dd>
1467
+ </dl>
1468
+
1469
+
1470
+
1471
+
1472
+
1473
+
1474
+
1475
+
1476
+
1477
+
1478
+
1479
+
1480
+
1481
+ <h4 class="name" id="submit"><span class="type-signature"></span>submit<span class="signature">(message, bindings<span class="signature-attributes">opt</span>, requestOptions<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Promise}</span></h4>
1482
+
1483
+
1484
+
1485
+
1486
+
1487
+
1488
+ <div class="description">
1489
+ Send a request to the Gremlin Server, can send a script or bytecode steps.
1490
+ </div>
1491
+
1492
+
1493
+
1494
+
1495
+
1496
+
1497
+
1498
+
1499
+
1500
+ <h5>Parameters:</h5>
1501
+
1389
1502
 
1390
1503
  <table class="params">
1391
1504
  <thead>
@@ -1411,46 +1524,16 @@ send session close request before connection close if session mode
1411
1524
 
1412
1525
  <tr>
1413
1526
 
1414
- <td class="name"><code>requestId</code></td>
1527
+ <td class="name"><code>message</code></td>
1415
1528
 
1416
1529
 
1417
1530
  <td class="type">
1418
1531
 
1419
1532
 
1420
- <span class="param-type">String</span>
1421
-
1422
-
1423
-
1424
- </td>
1425
-
1426
-
1427
- <td class="attributes">
1428
-
1429
- &lt;optional><br>
1430
-
1431
-
1432
-
1433
-
1434
-
1435
- </td>
1436
-
1437
-
1438
-
1439
-
1440
- <td class="description last">User specified request identifier which must be a UUID.</td>
1441
- </tr>
1442
-
1443
-
1444
-
1445
- <tr>
1446
-
1447
- <td class="name"><code>batchSize</code></td>
1448
-
1533
+ <span class="param-type"><a href="Bytecode.html">Bytecode</a></span>
1534
+ |
1449
1535
 
1450
- <td class="type">
1451
-
1452
-
1453
- <span class="param-type">Number</span>
1536
+ <span class="param-type">string</span>
1454
1537
 
1455
1538
 
1456
1539
 
@@ -1459,8 +1542,6 @@ send session close request before connection close if session mode
1459
1542
 
1460
1543
  <td class="attributes">
1461
1544
 
1462
- &lt;optional><br>
1463
-
1464
1545
 
1465
1546
 
1466
1547
 
@@ -1470,20 +1551,20 @@ send session close request before connection close if session mode
1470
1551
 
1471
1552
 
1472
1553
 
1473
- <td class="description last">The size in which the result of a request is to be "batched" back to the client</td>
1554
+ <td class="description last">The bytecode or script to send</td>
1474
1555
  </tr>
1475
1556
 
1476
1557
 
1477
1558
 
1478
1559
  <tr>
1479
1560
 
1480
- <td class="name"><code>userAgent</code></td>
1561
+ <td class="name"><code>bindings</code></td>
1481
1562
 
1482
1563
 
1483
1564
  <td class="type">
1484
1565
 
1485
1566
 
1486
- <span class="param-type">String</span>
1567
+ <span class="param-type">Object</span>
1487
1568
 
1488
1569
 
1489
1570
 
@@ -1503,20 +1584,20 @@ send session close request before connection close if session mode
1503
1584
 
1504
1585
 
1505
1586
 
1506
- <td class="description last">A custom string that specifies to the server where the request came from.</td>
1587
+ <td class="description last">The script bindings, if any.</td>
1507
1588
  </tr>
1508
1589
 
1509
1590
 
1510
1591
 
1511
1592
  <tr>
1512
1593
 
1513
- <td class="name"><code>evaluationTimeout</code></td>
1594
+ <td class="name"><code>requestOptions</code></td>
1514
1595
 
1515
1596
 
1516
1597
  <td class="type">
1517
1598
 
1518
1599
 
1519
- <span class="param-type">Number</span>
1600
+ <span class="param-type"><a href="global.html#RequestOptions">RequestOptions</a></span>
1520
1601
 
1521
1602
 
1522
1603
 
@@ -1536,14 +1617,7 @@ send session close request before connection close if session mode
1536
1617
 
1537
1618
 
1538
1619
 
1539
- <td class="description last">The timeout for the evaluation of the request.</td>
1540
- </tr>
1541
-
1542
-
1543
- </tbody>
1544
- </table>
1545
-
1546
- </td>
1620
+ <td class="description last">Configuration specific to the current request.</td>
1547
1621
  </tr>
1548
1622
 
1549
1623
 
@@ -1584,7 +1658,7 @@ send session close request before connection close if session mode
1584
1658
 
1585
1659
  <dt class="tag-source">Source:</dt>
1586
1660
  <dd class="tag-source"><ul class="dummy"><li>
1587
- <a href="driver_client.js.html">driver/client.js</a>, <a href="driver_client.js.html#line87">line 87</a>
1661
+ <a href="driver_client.js.html">driver/client.js</a>, <a href="driver_client.js.html#line91">line 91</a>
1588
1662
  </li></ul></dd>
1589
1663
 
1590
1664
 
@@ -1648,13 +1722,13 @@ send session close request before connection close if session mode
1648
1722
  </div>
1649
1723
 
1650
1724
  <nav>
1651
- <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="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="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="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="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#statics">statics</a></li></ul>
1725
+ <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="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="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>
1652
1726
  </nav>
1653
1727
 
1654
1728
  <br class="clear">
1655
1729
 
1656
1730
  <footer>
1657
- Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Mon Jul 26 2021 10:29:09 GMT+0200 (Central European Summer Time)
1731
+ Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Tue Jul 26 2022 15:51:52 GMT-0400 (Eastern Daylight Time)
1658
1732
  </footer>
1659
1733
 
1660
1734
  <script> prettyPrint(); </script>
@@ -640,7 +640,7 @@
640
640
 
641
641
 
642
642
 
643
- <td class="description last">Open websocket on startup. Defaults to: true.</td>
643
+ <td class="description last">Deprecated and non-functional. Open websocket on startup.</td>
644
644
  </tr>
645
645
 
646
646
 
@@ -688,7 +688,7 @@
688
688
 
689
689
  <dt class="tag-source">Source:</dt>
690
690
  <dd class="tag-source"><ul class="dummy"><li>
691
- <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line50">line 50</a>
691
+ <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line52">line 52</a>
692
692
  </li></ul></dd>
693
693
 
694
694
 
@@ -792,7 +792,7 @@
792
792
 
793
793
  <dt class="tag-source">Source:</dt>
794
794
  <dd class="tag-source"><ul class="dummy"><li>
795
- <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line82">line 82</a>
795
+ <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line83">line 83</a>
796
796
  </li></ul></dd>
797
797
 
798
798
 
@@ -872,7 +872,7 @@
872
872
 
873
873
  <dt class="tag-source">Source:</dt>
874
874
  <dd class="tag-source"><ul class="dummy"><li>
875
- <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line314">line 314</a>
875
+ <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line371">line 371</a>
876
876
  </li></ul></dd>
877
877
 
878
878
 
@@ -960,7 +960,7 @@
960
960
 
961
961
  <dt class="tag-source">Source:</dt>
962
962
  <dd class="tag-source"><ul class="dummy"><li>
963
- <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line369">line 369</a>
963
+ <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line411">line 411</a>
964
964
  </li></ul></dd>
965
965
 
966
966
 
@@ -1066,7 +1066,7 @@
1066
1066
 
1067
1067
  <dt class="tag-source">Source:</dt>
1068
1068
  <dd class="tag-source"><ul class="dummy"><li>
1069
- <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line113">line 113</a>
1069
+ <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line117">line 117</a>
1070
1070
  </li></ul></dd>
1071
1071
 
1072
1072
 
@@ -1114,6 +1114,90 @@
1114
1114
 
1115
1115
 
1116
1116
 
1117
+
1118
+
1119
+
1120
+
1121
+
1122
+
1123
+ <h4 class="name" id="stream"><span class="type-signature"></span>stream<span class="signature">()</span><span class="type-signature"></span></h4>
1124
+
1125
+
1126
+
1127
+
1128
+
1129
+
1130
+
1131
+
1132
+
1133
+
1134
+
1135
+
1136
+
1137
+
1138
+
1139
+
1140
+
1141
+
1142
+ <dl class="details">
1143
+
1144
+
1145
+
1146
+
1147
+
1148
+
1149
+
1150
+
1151
+
1152
+
1153
+
1154
+
1155
+
1156
+
1157
+
1158
+
1159
+
1160
+
1161
+
1162
+
1163
+
1164
+
1165
+
1166
+
1167
+
1168
+
1169
+ <dt class="tag-source">Source:</dt>
1170
+ <dd class="tag-source"><ul class="dummy"><li>
1171
+ <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line194">line 194</a>
1172
+ </li></ul></dd>
1173
+
1174
+
1175
+
1176
+
1177
+
1178
+
1179
+
1180
+ </dl>
1181
+
1182
+
1183
+
1184
+
1185
+
1186
+
1187
+
1188
+
1189
+
1190
+
1191
+
1192
+
1193
+
1194
+
1195
+
1196
+
1197
+
1198
+
1199
+
1200
+
1117
1201
 
1118
1202
 
1119
1203
 
@@ -1168,7 +1252,7 @@
1168
1252
 
1169
1253
  <dt class="tag-source">Source:</dt>
1170
1254
  <dd class="tag-source"><ul class="dummy"><li>
1171
- <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line162">line 162</a>
1255
+ <a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line166">line 166</a>
1172
1256
  </li></ul></dd>
1173
1257
 
1174
1258
 
@@ -1214,13 +1298,13 @@
1214
1298
  </div>
1215
1299
 
1216
1300
  <nav>
1217
- <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="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="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="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="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#statics">statics</a></li></ul>
1301
+ <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="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="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>
1218
1302
  </nav>
1219
1303
 
1220
1304
  <br class="clear">
1221
1305
 
1222
1306
  <footer>
1223
- Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Mon Jul 26 2021 10:29:09 GMT+0200 (Central European Summer Time)
1307
+ Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Tue Jul 26 2022 15:51:52 GMT-0400 (Eastern Daylight Time)
1224
1308
  </footer>
1225
1309
 
1226
1310
  <script> prettyPrint(); </script>
@@ -646,7 +646,7 @@
646
646
 
647
647
  <dt class="tag-source">Source:</dt>
648
648
  <dd class="tag-source"><ul class="dummy"><li>
649
- <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line65">line 65</a>
649
+ <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>
650
650
  </li></ul></dd>
651
651
 
652
652
 
@@ -704,7 +704,7 @@
704
704
 
705
705
  <dt class="tag-source">Source:</dt>
706
706
  <dd class="tag-source"><ul class="dummy"><li>
707
- <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line101">line 101</a>
707
+ <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>
708
708
  </li></ul></dd>
709
709
 
710
710
 
@@ -780,7 +780,7 @@
780
780
 
781
781
  <dt class="tag-source">Source:</dt>
782
782
  <dd class="tag-source"><ul class="dummy"><li>
783
- <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>
783
+ <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line122">line 122</a>
784
784
  </li></ul></dd>
785
785
 
786
786
 
@@ -864,7 +864,7 @@
864
864
 
865
865
  <dt class="tag-source">Source:</dt>
866
866
  <dd class="tag-source"><ul class="dummy"><li>
867
- <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>
867
+ <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line117">line 117</a>
868
868
  </li></ul></dd>
869
869
 
870
870
 
@@ -948,7 +948,7 @@
948
948
 
949
949
  <dt class="tag-source">Source:</dt>
950
950
  <dd class="tag-source"><ul class="dummy"><li>
951
- <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line106">line 106</a>
951
+ <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line107">line 107</a>
952
952
  </li></ul></dd>
953
953
 
954
954
 
@@ -1116,7 +1116,7 @@
1116
1116
 
1117
1117
  <dt class="tag-source">Source:</dt>
1118
1118
  <dd class="tag-source"><ul class="dummy"><li>
1119
- <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line60">line 60</a>
1119
+ <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line59">line 59</a>
1120
1120
  </li></ul></dd>
1121
1121
 
1122
1122
 
@@ -1200,7 +1200,7 @@
1200
1200
 
1201
1201
  <dt class="tag-source">Source:</dt>
1202
1202
  <dd class="tag-source"><ul class="dummy"><li>
1203
- <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>
1203
+ <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line127">line 127</a>
1204
1204
  </li></ul></dd>
1205
1205
 
1206
1206
 
@@ -1284,7 +1284,7 @@
1284
1284
 
1285
1285
  <dt class="tag-source">Source:</dt>
1286
1286
  <dd class="tag-source"><ul class="dummy"><li>
1287
- <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>
1287
+ <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line112">line 112</a>
1288
1288
  </li></ul></dd>
1289
1289
 
1290
1290
 
@@ -1368,7 +1368,7 @@
1368
1368
 
1369
1369
  <dt class="tag-source">Source:</dt>
1370
1370
  <dd class="tag-source"><ul class="dummy"><li>
1371
- <a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line70">line 70</a>
1371
+ <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>
1372
1372
  </li></ul></dd>
1373
1373
 
1374
1374
 
@@ -1414,13 +1414,13 @@
1414
1414
  </div>
1415
1415
 
1416
1416
  <nav>
1417
- <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="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="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="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="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#statics">statics</a></li></ul>
1417
+ <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="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="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>
1418
1418
  </nav>
1419
1419
 
1420
1420
  <br class="clear">
1421
1421
 
1422
1422
  <footer>
1423
- Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Mon Jul 26 2021 10:29:09 GMT+0200 (Central European Summer Time)
1423
+ Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Tue Jul 26 2022 15:51:52 GMT-0400 (Eastern Daylight Time)
1424
1424
  </footer>
1425
1425
 
1426
1426
  <script> prettyPrint(); </script>