Table of Contents

Class Bookmark

Namespace
Neo4j.Driver
Assembly
Neo4j.Driver.dll

Identifies a point in the transactional history of the database.

When working with a casual cluster, transactions can be chained to ensure causal consistency. Causal chaining is carried out by passing bookmarks between transactions.
When a session is constructed with an initial bookmarks, the first transaction (either auto-commit or explicit) will be blocked until the server has fast forwarded to catchup with the latest of the provided initial bookmarks.
Within a session, bookmark propagation is carried out automatically and does not require any explicit signal or setting from the application.
To opt out of this mechanism for unrelated units of work, applications can use multiple sessions.

[Obsolete("Replaced with Bookmarks. Will be removed in 6.0")]
public abstract class Bookmark
Inheritance
Bookmark
Derived
Inherited Members
Extension Methods

Properties

Values

Returns a list of bookmark strings that this bookmark instance identifies.

Methods

From(params string[])

Returns a new bookmark instance constructed from the provided list of bookmark strings.

Operators

operator +(Bookmark, Bookmark)

Combine both sets of bookmarks.