Class DefaultFindSliceAsyncInterceptor
java.lang.Object
io.micronaut.data.runtime.intercept.AbstractQueryInterceptor<T,CompletionStage<R>>
io.micronaut.data.runtime.intercept.async.AbstractAsyncInterceptor<Object,T>
io.micronaut.data.runtime.intercept.async.AbstractConvertCompletionStageInterceptor<Slice<Object>>
io.micronaut.data.runtime.intercept.async.DefaultFindSliceAsyncInterceptor
- All Implemented Interfaces:
FindSliceAsyncInterceptor<Object>
,DataInterceptor<Object,
CompletionStage<Slice<Object>>>
public class DefaultFindSliceAsyncInterceptor
extends AbstractConvertCompletionStageInterceptor<Slice<Object>>
implements FindSliceAsyncInterceptor<Object>
Default implementation of
FindSliceAsyncInterceptor
.- Since:
- 1.0.0
- Author:
- graemerocher
-
Field Summary
Fields inherited from class io.micronaut.data.runtime.intercept.async.AbstractAsyncInterceptor
asyncDatastoreOperations, LIST_OF_OBJECTS
Fields inherited from class io.micronaut.data.runtime.intercept.AbstractQueryInterceptor
conversionService, operations, preparedQueryResolver
-
Constructor Summary
ModifierConstructorDescriptionprotected
DefaultFindSliceAsyncInterceptor
(@NonNull RepositoryOperations datastore) Default constructor. -
Method Summary
Modifier and TypeMethodDescriptionprotected CompletionStage<?>
interceptCompletionStage
(RepositoryMethodKey methodKey, io.micronaut.aop.MethodInvocationContext<Object, CompletionStage<Slice<Object>>> context) Intercept CompletionStage.Methods inherited from class io.micronaut.data.runtime.intercept.async.AbstractConvertCompletionStageInterceptor
intercept
Methods inherited from class io.micronaut.data.runtime.intercept.async.AbstractAsyncInterceptor
convertNumberToReturnType, findReturnType, getReturnType
Methods inherited from class io.micronaut.data.runtime.intercept.AbstractQueryInterceptor
convertOne, convertOne, count, findEntitiesParameter, findEntityParameter, getDeleteAllBatchOperation, getDeleteBatchOperation, getDeleteBatchOperation, getDeleteOperation, getDeleteReturningBatchOperation, getDeleteReturningOperation, getEntitiesParameter, getEntityParameter, getInsertBatchOperation, getInsertBatchOperation, getInsertOperation, getInsertOperation, getPageable, getPagedQuery, getParameterValueMap, getRequiredEntity, getRequiredRootEntity, getUpdateAllBatchOperation, getUpdateOperation, getUpdateOperation, instantiateEntity, isNullable, isNumber, prepareCountQuery, prepareQuery, prepareQuery, prepareQuery, validateNullArguments
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface io.micronaut.data.intercept.DataInterceptor
intercept
-
Constructor Details
-
DefaultFindSliceAsyncInterceptor
Default constructor.- Parameters:
datastore
- The operations
-
-
Method Details
-
interceptCompletionStage
protected CompletionStage<?> interceptCompletionStage(RepositoryMethodKey methodKey, io.micronaut.aop.MethodInvocationContext<Object, CompletionStage<Slice<Object>>> context) Description copied from class:AbstractConvertCompletionStageInterceptor
Intercept CompletionStage.- Specified by:
interceptCompletionStage
in classAbstractConvertCompletionStageInterceptor<Slice<Object>>
- Parameters:
methodKey
- The method keycontext
- The context- Returns:
- the result publisher
-