Class ReactiveExtensionAwareQueryMethodEvaluationContextProvider
java.lang.Object
org.springframework.data.repository.query.ExtensionAwareQueryMethodEvaluationContextProvider
org.springframework.data.repository.query.ReactiveExtensionAwareQueryMethodEvaluationContextProvider
- All Implemented Interfaces:
- QueryMethodEvaluationContextProvider,- ReactiveQueryMethodEvaluationContextProvider
@Deprecated(since="3.4",
            forRemoval=true)
public class ReactiveExtensionAwareQueryMethodEvaluationContextProvider
extends ExtensionAwareQueryMethodEvaluationContextProvider
implements ReactiveQueryMethodEvaluationContextProvider
Deprecated, for removal: This API element is subject to removal in a future version.
An reactive 
QueryMethodEvaluationContextProvider that assembles an EvaluationContext from a list of
 EvaluationContextExtension and ReactiveEvaluationContextExtension.
 instances.- Since:
- 2.4
- Author:
- Mark Paluch
- 
Field SummaryFields inherited from interface org.springframework.data.repository.query.QueryMethodEvaluationContextProviderDEFAULTFields inherited from interface org.springframework.data.repository.query.ReactiveQueryMethodEvaluationContextProviderDEFAULT
- 
Constructor SummaryConstructorsConstructorDescriptionReactiveExtensionAwareQueryMethodEvaluationContextProvider(List<? extends ExtensionIdAware> extensions) Deprecated, for removal: This API element is subject to removal in a future version.Create a newReactiveExtensionAwareQueryMethodEvaluationContextProviderusing the givenEvaluationContextExtensions andReactiveEvaluationContextExtensions.Deprecated, for removal: This API element is subject to removal in a future version.ReactiveExtensionAwareQueryMethodEvaluationContextProvider(EvaluationContextProvider evaluationContextProvider) Deprecated, for removal: This API element is subject to removal in a future version.Creates a newReactiveExtensionAwareQueryMethodEvaluationContextProvider.
- 
Method SummaryModifier and TypeMethodDescription<T extends Parameters<?,?>> 
 Mono<EvaluationContext>getEvaluationContextLater(T parameters, Object[] parameterValues) Deprecated, for removal: This API element is subject to removal in a future version.Return aEvaluationContextbuilt using the givenParametersand parameter values.<T extends Parameters<?,?>> 
 Mono<EvaluationContext>getEvaluationContextLater(T parameters, Object[] parameterValues, ExpressionDependencies dependencies) Deprecated, for removal: This API element is subject to removal in a future version.Return aEvaluationContextbuilt using the givenParametersand parameter values.Methods inherited from class org.springframework.data.repository.query.ExtensionAwareQueryMethodEvaluationContextProvidergetDelegate, getEvaluationContext, getEvaluationContext, getEvaluationContextProviderMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.data.repository.query.QueryMethodEvaluationContextProvidergetEvaluationContext, getEvaluationContext, getEvaluationContextProvider
- 
Constructor Details- 
ReactiveExtensionAwareQueryMethodEvaluationContextProviderDeprecated, for removal: This API element is subject to removal in a future version.- Parameters:
- beanFactory- the- ListableBeanFactoryto lookup the- EvaluationContextExtensions from, must not be null.
 
- 
ReactiveExtensionAwareQueryMethodEvaluationContextProviderpublic ReactiveExtensionAwareQueryMethodEvaluationContextProvider(List<? extends ExtensionIdAware> extensions) Deprecated, for removal: This API element is subject to removal in a future version.Create a newReactiveExtensionAwareQueryMethodEvaluationContextProviderusing the givenEvaluationContextExtensions andReactiveEvaluationContextExtensions.- Parameters:
- extensions- must not be null.
 
- 
ReactiveExtensionAwareQueryMethodEvaluationContextProviderpublic ReactiveExtensionAwareQueryMethodEvaluationContextProvider(EvaluationContextProvider evaluationContextProvider) Deprecated, for removal: This API element is subject to removal in a future version.Creates a newReactiveExtensionAwareQueryMethodEvaluationContextProvider.- Parameters:
- evaluationContextProvider- to lookup the- EvaluationContextExtensions from, must not be null.
 
 
- 
- 
Method Details- 
getEvaluationContextLaterpublic <T extends Parameters<?,?>> Mono<EvaluationContext> getEvaluationContextLater(T parameters, Object[] parameterValues) Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:ReactiveQueryMethodEvaluationContextProviderReturn aEvaluationContextbuilt using the givenParametersand parameter values.- Specified by:
- getEvaluationContextLaterin interface- ReactiveQueryMethodEvaluationContextProvider
- Parameters:
- parameters- the- Parametersinstance obtained from the query method the context is built for.
- parameterValues- the values for the parameters.
- Returns:
- a mono that emits exactly one EvaluationContext.
 
- 
getEvaluationContextLaterpublic <T extends Parameters<?,?>> Mono<EvaluationContext> getEvaluationContextLater(T parameters, Object[] parameterValues, ExpressionDependencies dependencies) Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:ReactiveQueryMethodEvaluationContextProviderReturn aEvaluationContextbuilt using the givenParametersand parameter values.- Specified by:
- getEvaluationContextLaterin interface- ReactiveQueryMethodEvaluationContextProvider
- Parameters:
- parameters- the- Parametersinstance obtained from the query method the context is built for.
- parameterValues- the values for the parameters.
- Returns:
- a mono that emits exactly one EvaluationContext.
 
 
- 
QueryMethodValueEvaluationContextAccessor.