We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e76f8e0 commit 869d381Copy full SHA for 869d381
driver/src/main/java/org/neo4j/driver/internal/NetworkSession.java
@@ -198,6 +198,9 @@ public <T> T writeTransaction( TransactionWork<T> work )
198
return transaction( AccessMode.WRITE, work );
199
}
200
201
+ // Internal method for setting the bookmark explicitly, mainly for testing.
202
+ // This method does not prevent setting the bookmark to null since that
203
+ // is a valid requirement for some test scenarios.
204
void setBookmark( String bookmark )
205
{
206
this.bookmark = bookmark;
0 commit comments