Class ReactiveCosmosQueryExecution.DeleteExecution
- java.lang.Object
-
- com.azure.spring.data.cosmos.repository.query.ReactiveCosmosQueryExecution.DeleteExecution
-
- All Implemented Interfaces:
ReactiveCosmosQueryExecution
- Enclosing interface:
- ReactiveCosmosQueryExecution
public static final class ReactiveCosmosQueryExecution.DeleteExecution extends Object implements ReactiveCosmosQueryExecution
Delete operation implementation to execute a delete query
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.azure.spring.data.cosmos.repository.query.ReactiveCosmosQueryExecution
ReactiveCosmosQueryExecution.ContainerExecution, ReactiveCosmosQueryExecution.CountExecution, ReactiveCosmosQueryExecution.DeleteExecution, ReactiveCosmosQueryExecution.ExistsExecution, ReactiveCosmosQueryExecution.MultiEntityExecution, ReactiveCosmosQueryExecution.SingleEntityExecution
-
-
Constructor Summary
Constructors Constructor Description DeleteExecution(ReactiveCosmosOperations operations)Creates a new instance of delete execution.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectexecute(CosmosQuery query, Class<?> type, String container)Declare an execute function for different operations to call
-
-
-
Constructor Detail
-
DeleteExecution
public DeleteExecution(ReactiveCosmosOperations operations)
Creates a new instance of delete execution.- Parameters:
operations- Reactive Cosmos operations
-
-
Method Detail
-
execute
public Object execute(CosmosQuery query, Class<?> type, String container)
Description copied from interface:ReactiveCosmosQueryExecutionDeclare an execute function for different operations to call- Specified by:
executein interfaceReactiveCosmosQueryExecution- Parameters:
query- document query operationtype- domain typecontainer- container to conduct query- Returns:
- Object according to execution result
-
-