Class AbstractReactiveCosmosQuery
- java.lang.Object
-
- com.azure.spring.data.cosmos.repository.query.AbstractReactiveCosmosQuery
-
- All Implemented Interfaces:
org.springframework.data.repository.query.RepositoryQuery
- Direct Known Subclasses:
PartTreeReactiveCosmosQuery,StringBasedReactiveCosmosQuery
public abstract class AbstractReactiveCosmosQuery extends Object implements org.springframework.data.repository.query.RepositoryQuery
Abstract class for reactive cosmos query.
-
-
Field Summary
Fields Modifier and Type Field Description protected ReactiveCosmosOperationsoperationsReactive Cosmos operations
-
Constructor Summary
Constructors Constructor Description AbstractReactiveCosmosQuery(ReactiveCosmosQueryMethod method, ReactiveCosmosOperations operations)Initialization
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract CosmosQuerycreateQuery(ReactiveCosmosParameterAccessor accessor)Creates a query.Objectexecute(Object[] parameters)Executes theAbstractReactiveCosmosQuerywith the given parameters.protected ReactiveCosmosQueryExecutiongetExecution(org.springframework.data.repository.query.ReturnedType returnedType)Determines the appropriate execution path for a reactive queryReactiveCosmosQueryMethodgetQueryMethod()Get method of queryprotected abstract booleanisCountQuery()protected abstract booleanisDeleteQuery()protected abstract booleanisExistsQuery()protected booleanisPageQuery()
-
-
-
Field Detail
-
operations
protected final ReactiveCosmosOperations operations
Reactive Cosmos operations
-
-
Constructor Detail
-
AbstractReactiveCosmosQuery
public AbstractReactiveCosmosQuery(ReactiveCosmosQueryMethod method, ReactiveCosmosOperations operations)
Initialization- Parameters:
method- ReactiveCosmosQueryMethodoperations- ReactiveCosmosOperations
-
-
Method Detail
-
execute
public Object execute(Object[] parameters)
Executes theAbstractReactiveCosmosQuerywith the given parameters.- Specified by:
executein interfaceorg.springframework.data.repository.query.RepositoryQuery- Parameters:
parameters- must not be null.- Returns:
- execution result. Can be null.
-
getExecution
protected ReactiveCosmosQueryExecution getExecution(org.springframework.data.repository.query.ReturnedType returnedType)
Determines the appropriate execution path for a reactive query- Parameters:
returnedType- The return type of the method- Returns:
- the execution type needed to handle the query
- Throws:
IllegalArgumentException- if execution requires paging
-
getQueryMethod
public ReactiveCosmosQueryMethod getQueryMethod()
Get method of query- Specified by:
getQueryMethodin interfaceorg.springframework.data.repository.query.RepositoryQuery- Returns:
- ReactiveCosmosQueryMethod
-
createQuery
protected abstract CosmosQuery createQuery(ReactiveCosmosParameterAccessor accessor)
Creates a query.- Parameters:
accessor- Reactive Cosmos parameter accessor.- Returns:
- a Cosmos query.
-
isDeleteQuery
protected abstract boolean isDeleteQuery()
- Returns:
- whether this is a deletion query.
-
isExistsQuery
protected abstract boolean isExistsQuery()
- Returns:
- whether this is an exists query.
-
isCountQuery
protected abstract boolean isCountQuery()
- Returns:
- whether this is a count query.
-
isPageQuery
protected boolean isPageQuery()
- Returns:
- whether this is a page query.
-
-