Class DefaultFindAllAsyncInterceptor
java.lang.Object
io.micronaut.data.runtime.intercept.AbstractQueryInterceptor<Object, CompletionStage<Iterable<Object>>>
io.micronaut.data.runtime.intercept.async.AbstractAsyncInterceptor<Object, Iterable<Object>>
io.micronaut.data.runtime.intercept.async.AbstractConvertCompletionStageInterceptor<Iterable<Object>>
io.micronaut.data.runtime.intercept.async.DefaultFindAllAsyncInterceptor
- All Implemented Interfaces:
FindAllAsyncInterceptor<Object>, DataInterceptor<Object, CompletionStage<Iterable<Object>>>
public class DefaultFindAllAsyncInterceptor
extends AbstractConvertCompletionStageInterceptor<Iterable<Object>>
implements FindAllAsyncInterceptor<Object>
The default implementation of
FindAllAsyncInterceptor.- Since:
- 1.0.0
- Author:
- graemerocher
-
Field Summary
Fields inherited from class AbstractAsyncInterceptor
asyncDatastoreOperations, LIST_OF_OBJECTSFields inherited from class AbstractQueryInterceptor
conversionService, operations, preparedQueryResolver -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedDefaultFindAllAsyncInterceptor(@NonNull RepositoryOperations datastore) Default constructor. -
Method Summary
Modifier and TypeMethodDescriptionprotected CompletionStage<?> interceptCompletionStage(RepositoryMethodKey methodKey, io.micronaut.aop.MethodInvocationContext<Object, CompletionStage<Iterable<Object>>> context) Intercept CompletionStage.Methods inherited from class AbstractConvertCompletionStageInterceptor
interceptMethods inherited from class AbstractAsyncInterceptor
convertNumberToReturnType, findReturnType, getReturnTypeMethods inherited from class AbstractQueryInterceptor
convertOne, convertOne, count, findEntitiesParameter, findEntityParameter, getDeleteAllBatchOperation, getDeleteBatchOperation, getDeleteBatchOperation, getDeleteOperation, getDeleteReturningBatchOperation, getDeleteReturningOperation, getEntitiesParameter, getEntityParameter, getInsertBatchOperation, getInsertBatchOperation, getInsertOperation, getInsertOperation, getLimit, getOffset, getPageable, getPageableInRole, getPagedQuery, getParameterInRole, getParameterInRole, getParametersInRole, getParametersInRole, getParameterValueMap, getRequiredEntity, getRequiredParameterInRole, getRequiredRootEntity, getUpdateAllBatchOperation, getUpdateOperation, getUpdateOperation, hasReturnTypeInRole, instantiateEntity, isNumber, prepareCountQuery, prepareQuery, validateNullArgumentsMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface DataInterceptor
intercept
-
Constructor Details
-
DefaultFindAllAsyncInterceptor
Default constructor.- Parameters:
datastore- The operations
-
-
Method Details
-
interceptCompletionStage
protected CompletionStage<?> interceptCompletionStage(RepositoryMethodKey methodKey, io.micronaut.aop.MethodInvocationContext<Object, CompletionStage<Iterable<Object>>> context) Description copied from class:AbstractConvertCompletionStageInterceptorIntercept CompletionStage.- Specified by:
interceptCompletionStagein classAbstractConvertCompletionStageInterceptor<Iterable<Object>>- Parameters:
methodKey- The method keycontext- The context- Returns:
- the result publisher
-