Uses of Interface
org.springframework.data.couchbase.core.ReactiveCouchbaseOperations
Packages that use ReactiveCouchbaseOperations
Package
Description
This package contains the specific implementations and core classes for Spring Data Couchbase internals.
This package contains the Couchbase interfaces to support the Spring Data repository abstraction.
This package contains the support classes to configure repositories in the context of Couchbase.
This package contains classes related to query derivation and concrete ways of querying couchbase.
This package contains the Couchbase implementations to support the Spring Data repository abstraction.
-
Uses of ReactiveCouchbaseOperations in org.springframework.data.couchbase.core
Classes in org.springframework.data.couchbase.core that implement ReactiveCouchbaseOperationsModifier and TypeClassDescriptionclass
template class for Reactive Couchbase operations -
Uses of ReactiveCouchbaseOperations in org.springframework.data.couchbase.repository
Methods in org.springframework.data.couchbase.repository that return ReactiveCouchbaseOperations -
Uses of ReactiveCouchbaseOperations in org.springframework.data.couchbase.repository.config
Methods in org.springframework.data.couchbase.repository.config that return ReactiveCouchbaseOperationsModifier and TypeMethodDescriptionReactiveRepositoryOperationsMapping.getDefault()
Given a repository interface and its domain type, resolves whichReactiveCouchbaseOperations
it should be backed with.Methods in org.springframework.data.couchbase.repository.config with parameters of type ReactiveCouchbaseOperationsModifier and TypeMethodDescriptionReactiveRepositoryOperationsMapping.map
(Class<?> repositoryInterface, ReactiveCouchbaseOperations operations) Add a highest priority mapping that will associate a specific repository interface with a givenReactiveCouchbaseOperations
.ReactiveRepositoryOperationsMapping.mapEntity
(Class<?> entityClass, ReactiveCouchbaseOperations operations) Add a middle priority mapping that will associate any un-mapped repository that deals with the given domain type Class with a givenReactiveCouchbaseOperations
.ReactiveRepositoryOperationsMapping.setDefault
(ReactiveCouchbaseOperations aDefault) Change the default reactive couchbase operations in an existing mapping.Constructors in org.springframework.data.couchbase.repository.config with parameters of type ReactiveCouchbaseOperationsModifierConstructorDescriptionReactiveRepositoryOperationsMapping
(ReactiveCouchbaseOperations defaultOperations) Creates a new mapping, setting the default fallback to use by otherwise non mapped repositories. -
Uses of ReactiveCouchbaseOperations in org.springframework.data.couchbase.repository.query
Methods in org.springframework.data.couchbase.repository.query that return ReactiveCouchbaseOperationsModifier and TypeMethodDescriptionprotected ReactiveCouchbaseOperations
ReactiveAbstractN1qlBasedQuery.getCouchbaseOperations()
Constructors in org.springframework.data.couchbase.repository.query with parameters of type ReactiveCouchbaseOperationsModifierConstructorDescriptionAbstractReactiveCouchbaseQuery
(ReactiveCouchbaseQueryMethod method, ReactiveCouchbaseOperations operations, SpelExpressionParser expressionParser, QueryMethodEvaluationContextProvider evaluationContextProvider) Creates a newAbstractReactiveCouchbaseQuery
from the givenReactiveCouchbaseQueryMethod
andCouchbaseOperations
.protected
ReactiveAbstractN1qlBasedQuery
(CouchbaseQueryMethod method, ReactiveCouchbaseOperations operations) ReactiveCouchbaseRepositoryQuery
(ReactiveCouchbaseOperations operations, ReactiveCouchbaseQueryMethod queryMethod, NamedQueries namedQueries) Deprecated.ReactiveN1qlRepositoryQueryExecutor
(ReactiveCouchbaseOperations operations, ReactiveCouchbaseQueryMethod queryMethod, NamedQueries namedQueries, QueryMethodEvaluationContextProvider evaluationContextProvider) Deprecated.ReactivePartTreeCouchbaseQuery
(ReactiveCouchbaseQueryMethod method, ReactiveCouchbaseOperations operations, SpelExpressionParser expressionParser, QueryMethodEvaluationContextProvider evaluationContextProvider) ReactivePartTreeN1qlBasedQuery
(CouchbaseQueryMethod queryMethod, ReactiveCouchbaseOperations operations) Deprecated.ReactiveStringBasedCouchbaseQuery
(ReactiveCouchbaseQueryMethod method, ReactiveCouchbaseOperations couchbaseOperations, SpelExpressionParser expressionParser, QueryMethodEvaluationContextProvider evaluationContextProvider, NamedQueries namedQueries) Creates a newReactiveStringBasedCouchbaseQuery
for the givenString
,CouchbaseQueryMethod
,ReactiveCouchbaseOperations
,SpelExpressionParser
andQueryMethodEvaluationContextProvider
. -
Uses of ReactiveCouchbaseOperations in org.springframework.data.couchbase.repository.support
Methods in org.springframework.data.couchbase.repository.support that return ReactiveCouchbaseOperationsMethods in org.springframework.data.couchbase.repository.support with parameters of type ReactiveCouchbaseOperationsModifier and TypeMethodDescriptionvoid
ReactiveCouchbaseRepositoryFactoryBean.setCouchbaseOperations
(ReactiveCouchbaseOperations reactiveCouchbaseOperations) Set the template reference.Constructors in org.springframework.data.couchbase.repository.support with parameters of type ReactiveCouchbaseOperationsModifierConstructorDescriptionSimpleReactiveCouchbaseRepository
(CouchbaseEntityInformation<T, String> entityInformation, ReactiveCouchbaseOperations operations, Class<?> repositoryInterface) Create a new Repository.