Uses of Interface
org.neo4j.driver.Bookmark
Packages that use Bookmark
Package
Description
-
Uses of Bookmark in org.neo4j.driver
Methods in org.neo4j.driver that return BookmarkModifier and TypeMethodDescriptionstatic Bookmark
Reconstruct bookmark from bookmark string value.static Bookmark
Deprecated.Session.lastBookmark()
Deprecated.Methods in org.neo4j.driver that return types with arguments of type BookmarkModifier and TypeMethodDescriptionSessionConfig.bookmarks()
Returns the initial bookmarks.BookmarkManagerConfig.bookmarksConsumer()
Returns bookmarks consumer that will be notified when bookmarks are updated.BookmarkManagerConfig.bookmarksSupplier()
Returns bookmarks supplier that will be used by the bookmark manager when getting bookmarks.BookmarkManager.getBookmarks()
Gets an immutable set of bookmarks.BookmarkManagerConfig.initialBookmarks()
Returns the map of bookmarks used to initialise the bookmark manager.Session.lastBookmarks()
Return a set of last bookmarks.Methods in org.neo4j.driver with parameters of type BookmarkModifier and TypeMethodDescriptionSessionConfig.Builder.withBookmarks
(Bookmark... bookmarks) Set the initial bookmarks to be used in a session.Method parameters in org.neo4j.driver with type arguments of type BookmarkModifier and TypeMethodDescriptionvoid
BookmarkManager.updateBookmarks
(Set<Bookmark> previousBookmarks, Set<Bookmark> newBookmarks) Updates bookmarks by deleting the given previous bookmarks and adding the new bookmarks.SessionConfig.Builder.withBookmarks
(Iterable<Bookmark> bookmarks) Set the initial bookmarks to be used in a session.BookmarkManagerConfig.BookmarkManagerConfigBuilder.withBookmarksConsumer
(Consumer<Set<Bookmark>> bookmarksConsumer) Provide bookmarks consumer.BookmarkManagerConfig.BookmarkManagerConfigBuilder.withBookmarksSupplier
(Supplier<Set<Bookmark>> bookmarksSupplier) Provide bookmarks supplier.BookmarkManagerConfig.BookmarkManagerConfigBuilder.withInitialBookmarks
(Set<Bookmark> initialBookmarks) Provide a map of initial bookmarks to initialise the bookmark manager. -
Uses of Bookmark in org.neo4j.driver.async
Methods in org.neo4j.driver.async that return BookmarkMethods in org.neo4j.driver.async that return types with arguments of type Bookmark -
Uses of Bookmark in org.neo4j.driver.internal.async
Methods in org.neo4j.driver.internal.async that return BookmarkMethods in org.neo4j.driver.internal.async that return types with arguments of type BookmarkModifier and TypeMethodDescriptionInternalAsyncSession.lastBookmarks()
NetworkSession.lastBookmarks()
ConnectionContext.rediscoveryBookmarks()
ImmutableConnectionContext.rediscoveryBookmarks()
Method parameters in org.neo4j.driver.internal.async with type arguments of type BookmarkModifier and TypeMethodDescriptionUnmanagedTransaction.beginAsync
(Set<Bookmark> initialBookmarks, TransactionConfig config, String txType, boolean flush) Constructor parameters in org.neo4j.driver.internal.async with type arguments of type BookmarkModifierConstructorDescriptionImmutableConnectionContext
(org.neo4j.driver.internal.DatabaseName databaseName, Set<Bookmark> bookmarks, AccessMode mode) LeakLoggingNetworkSession
(ConnectionProvider connectionProvider, RetryLogic retryLogic, org.neo4j.driver.internal.DatabaseName databaseName, AccessMode mode, Set<Bookmark> bookmarks, String impersonatedUser, long fetchSize, Logging logging, BookmarkManager bookmarkManager, org.neo4j.driver.internal.GqlNotificationConfig notificationConfig, AuthToken overrideAuthToken, boolean telemetryDisabled) NetworkSession
(ConnectionProvider connectionProvider, RetryLogic retryLogic, org.neo4j.driver.internal.DatabaseName databaseName, AccessMode mode, Set<Bookmark> bookmarks, String impersonatedUser, long fetchSize, Logging logging, BookmarkManager bookmarkManager, org.neo4j.driver.internal.GqlNotificationConfig notificationConfig, AuthToken overrideAuthToken, boolean telemetryDisabled) -
Uses of Bookmark in org.neo4j.driver.internal.cluster
Method parameters in org.neo4j.driver.internal.cluster with type arguments of type BookmarkModifier and TypeMethodDescriptionClusterCompositionProvider.getClusterComposition
(Connection connection, org.neo4j.driver.internal.DatabaseName databaseName, Set<Bookmark> bookmarks, String impersonatedUser) RoutingProcedureClusterCompositionProvider.getClusterComposition
(Connection connection, org.neo4j.driver.internal.DatabaseName databaseName, Set<Bookmark> bookmarks, String impersonatedUser) Rediscovery.lookupClusterComposition
(RoutingTable routingTable, ConnectionPool connectionPool, Set<Bookmark> bookmarks, String impersonatedUser, AuthToken overrideAuthToken) Fetches cluster composition using the provided routing table.RediscoveryImpl.lookupClusterComposition
(RoutingTable routingTable, ConnectionPool connectionPool, Set<Bookmark> bookmarks, String impersonatedUser, AuthToken overrideAuthToken) Given a database and its current routing table, and the global connection pool, use the global cluster composition provider to fetch a new cluster composition, which would be used to update the routing table of the given database and global connection pool.RouteMessageRoutingProcedureRunner.run
(Connection connection, org.neo4j.driver.internal.DatabaseName databaseName, Set<Bookmark> bookmarks, String impersonatedUser) RoutingProcedureRunner.run
(Connection connection, org.neo4j.driver.internal.DatabaseName databaseName, Set<Bookmark> bookmarks, String impersonatedUser) Run the calls to the serverSingleDatabaseRoutingProcedureRunner.run
(Connection connection, org.neo4j.driver.internal.DatabaseName databaseName, Set<Bookmark> bookmarks, String impersonatedUser) -
Uses of Bookmark in org.neo4j.driver.internal.messaging
Method parameters in org.neo4j.driver.internal.messaging with type arguments of type BookmarkModifier and TypeMethodDescriptionBoltProtocol.beginTransaction
(Connection connection, Set<Bookmark> bookmarks, TransactionConfig config, String txType, org.neo4j.driver.internal.GqlNotificationConfig GqlNotificationConfig, Logging logging, boolean flush) Begin an unmanaged transaction.BoltProtocol.runInAutoCommitTransaction
(Connection connection, Query query, Set<Bookmark> bookmarks, Consumer<org.neo4j.driver.internal.DatabaseBookmark> bookmarkConsumer, TransactionConfig config, long fetchSize, org.neo4j.driver.internal.GqlNotificationConfig GqlNotificationConfig, Logging logging) Execute the given query in an auto-commit transaction, i.e. -
Uses of Bookmark in org.neo4j.driver.internal.messaging.request
Methods in org.neo4j.driver.internal.messaging.request that return types with arguments of type BookmarkModifier and TypeMethodDescriptionRouteMessage.bookmarks()
Returns the value of thebookmarks
record component.Method parameters in org.neo4j.driver.internal.messaging.request with type arguments of type BookmarkModifier and TypeMethodDescriptionstatic RunWithMetadataMessage
RunWithMetadataMessage.autoCommitTxRunMessage
(Query query, Duration txTimeout, Map<String, Value> txMetadata, org.neo4j.driver.internal.DatabaseName databaseName, AccessMode mode, Set<Bookmark> bookmarks, String impersonatedUser, org.neo4j.driver.internal.GqlNotificationConfig notificationConfig, boolean legacyNotifications, Logging logging) static RunWithMetadataMessage
RunWithMetadataMessage.autoCommitTxRunMessage
(Query query, TransactionConfig config, org.neo4j.driver.internal.DatabaseName databaseName, AccessMode mode, Set<Bookmark> bookmarks, String impersonatedUser, org.neo4j.driver.internal.GqlNotificationConfig notificationConfig, boolean legacyNotifications, Logging logging) TransactionMetadataBuilder.buildMetadata
(Duration txTimeout, Map<String, Value> txMetadata, org.neo4j.driver.internal.DatabaseName databaseName, AccessMode mode, Set<Bookmark> bookmarks, String impersonatedUser, String txType, org.neo4j.driver.internal.GqlNotificationConfig notificationConfig, boolean legacyNotifications, Logging logging) Constructor parameters in org.neo4j.driver.internal.messaging.request with type arguments of type BookmarkModifierConstructorDescriptionBeginMessage
(Set<Bookmark> bookmarks, Duration txTimeout, Map<String, Value> txMetadata, AccessMode mode, org.neo4j.driver.internal.DatabaseName databaseName, String impersonatedUser, String txType, org.neo4j.driver.internal.GqlNotificationConfig notificationConfig, boolean legacyNotifications, Logging logging) BeginMessage
(Set<Bookmark> bookmarks, TransactionConfig config, org.neo4j.driver.internal.DatabaseName databaseName, AccessMode mode, String impersonatedUser, String txType, org.neo4j.driver.internal.GqlNotificationConfig notificationConfig, boolean legacyNotifications, Logging logging) RouteMessage
(Map<String, Value> routingContext, Set<Bookmark> bookmarks, String databaseName, String impersonatedUser) Constructor -
Uses of Bookmark in org.neo4j.driver.internal.messaging.v3
Method parameters in org.neo4j.driver.internal.messaging.v3 with type arguments of type BookmarkModifier and TypeMethodDescriptionBoltProtocolV3.beginTransaction
(Connection connection, Set<Bookmark> bookmarks, TransactionConfig config, String txType, org.neo4j.driver.internal.GqlNotificationConfig notificationConfig, Logging logging, boolean flush) BoltProtocolV3.runInAutoCommitTransaction
(Connection connection, Query query, Set<Bookmark> bookmarks, Consumer<org.neo4j.driver.internal.DatabaseBookmark> bookmarkConsumer, TransactionConfig config, long fetchSize, org.neo4j.driver.internal.GqlNotificationConfig notificationConfig, Logging logging) -
Uses of Bookmark in org.neo4j.driver.internal.reactive
Methods in org.neo4j.driver.internal.reactive that return BookmarkMethods in org.neo4j.driver.internal.reactive that return types with arguments of type BookmarkModifier and TypeMethodDescriptionAbstractReactiveSession.lastBookmarks()
InternalReactiveSession.lastBookmarks()
-
Uses of Bookmark in org.neo4j.driver.internal.reactivestreams
Methods in org.neo4j.driver.internal.reactivestreams that return types with arguments of type Bookmark -
Uses of Bookmark in org.neo4j.driver.reactive
Methods in org.neo4j.driver.reactive that return BookmarkModifier and TypeMethodDescriptionRxSession.lastBookmark()
Deprecated.Return the last bookmark of this session.Methods in org.neo4j.driver.reactive that return types with arguments of type BookmarkModifier and TypeMethodDescriptionReactiveSession.lastBookmarks()
Return a set of last bookmarks. -
Uses of Bookmark in org.neo4j.driver.reactivestreams
Methods in org.neo4j.driver.reactivestreams that return types with arguments of type BookmarkModifier and TypeMethodDescriptionReactiveSession.lastBookmarks()
Return a set of last bookmarks.