You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unified logic for new bolt messages. Instead of updating Interface and Abstract class every new method has to ask if it exists. Refactored route method and moved destructor to last place as it should be.
<pre>The bookmarks is a list of strings containg some kind of bookmark identification e.g [“neo4j-bookmark-transaction:1”, “neo4j-bookmark-transaction:2”]
327
328
The tx_timeout is an integer in that specifies a transaction timeout in ms.
@@ -335,31 +336,33 @@ public function begin(array $extra = []): bool
@@ -374,6 +377,22 @@ public function reset(): bool
374
377
return$this->protocol->reset();
375
378
}
376
379
380
+
/**
381
+
* Send ROUTE message to instruct the server to return the current routing table.
382
+
* @version >=4.3 In previous versions there was no explicit message for this and a procedure had to be invoked using Cypher through the RUN and PULL messages.
0 commit comments