Uses of Interface
org.springframework.data.neo4j.core.transaction.Neo4jBookmarkManager
Packages that use Neo4jBookmarkManager
Package
Description
This package contains configuration related support classes that
can be used for application specific, annotated configuration classes.
This package contains the core infrastructure for creating an
imperative or reactive client that can execute queries.
This package provides a couple of support classes that might be
helpful in your domain, for example a predicate indicating that some transaction may be
retried and additional converters and id generators.
Contains the core infrastructure for translating unmanaged Neo4j
transaction into Spring managed transactions.
-
Uses of Neo4jBookmarkManager in org.springframework.data.neo4j.config
Methods in org.springframework.data.neo4j.config that return Neo4jBookmarkManagerModifier and TypeMethodDescriptionAbstractNeo4jConfig.bookmarkManager()AbstractReactiveNeo4jConfig.bookmarkManager() -
Uses of Neo4jBookmarkManager in org.springframework.data.neo4j.core
Methods in org.springframework.data.neo4j.core with parameters of type Neo4jBookmarkManagerModifier and TypeMethodDescriptionNeo4jClient.Builder.withNeo4jBookmarkManager(@Nullable Neo4jBookmarkManager bookmarkManager) Configures theNeo4jBookmarkManagerto use.ReactiveNeo4jClient.Builder.withNeo4jBookmarkManager(@Nullable Neo4jBookmarkManager bookmarkManager) Configures theNeo4jBookmarkManagerto use. -
Uses of Neo4jBookmarkManager in org.springframework.data.neo4j.core.support
Methods in org.springframework.data.neo4j.core.support that return Neo4jBookmarkManagerConstructors in org.springframework.data.neo4j.core.support with parameters of type Neo4jBookmarkManagerModifierConstructorDescriptionBookmarkManagerReference(Supplier<Neo4jBookmarkManager> defaultBookmarkManagerSupplier, @Nullable Neo4jBookmarkManager bookmarkManager) Constructor parameters in org.springframework.data.neo4j.core.support with type arguments of type Neo4jBookmarkManagerModifierConstructorDescriptionBookmarkManagerReference(Supplier<Neo4jBookmarkManager> defaultBookmarkManagerSupplier, @Nullable Neo4jBookmarkManager bookmarkManager) -
Uses of Neo4jBookmarkManager in org.springframework.data.neo4j.core.transaction
Methods in org.springframework.data.neo4j.core.transaction that return Neo4jBookmarkManagerModifier and TypeMethodDescriptionstatic Neo4jBookmarkManagerNeo4jBookmarkManager.create()Returns the default bookmark manager.static Neo4jBookmarkManagerUse this factory method to add supplier of initial "seeding" bookmarks to the transaction managersstatic Neo4jBookmarkManagerNeo4jBookmarkManager.createReactive()Returns the default reactive version of bookmark manager.static Neo4jBookmarkManagerNeo4jBookmarkManager.createReactive(Supplier<Set<org.neo4j.driver.Bookmark>> bookmarksSupplier) Use this factory method to add supplier of initial "seeding" bookmarks to the transaction managersstatic Neo4jBookmarkManagerNeo4jBookmarkManager.noop()Use this bookmark manager at your own risk, it will effectively disable any bookmark management by dropping all bookmarks and never supplying any.Methods in org.springframework.data.neo4j.core.transaction with parameters of type Neo4jBookmarkManagerModifier and TypeMethodDescriptionNeo4jTransactionManager.Builder.withBookmarkManager(Neo4jBookmarkManager bookmarkManager) ReactiveNeo4jTransactionManager.Builder.withBookmarkManager(@Nullable Neo4jBookmarkManager bookmarkManager) Constructors in org.springframework.data.neo4j.core.transaction with parameters of type Neo4jBookmarkManagerModifierConstructorDescriptionNeo4jTransactionManager(org.neo4j.driver.Driver driver, DatabaseSelectionProvider databaseSelectionProvider, Neo4jBookmarkManager bookmarkManager) This constructor can be used to configure the bookmark manager being used.ReactiveNeo4jTransactionManager(org.neo4j.driver.Driver driver, ReactiveDatabaseSelectionProvider databaseSelectionProvider, Neo4jBookmarkManager bookmarkManager) This constructor can be used to configure the bookmark manager being used.