Class AbstractPublisherInterceptor
java.lang.Object
io.micronaut.data.runtime.intercept.AbstractQueryInterceptor<Object,Object>
io.micronaut.data.runtime.intercept.reactive.AbstractReactiveInterceptor<Object,Object>
io.micronaut.data.runtime.intercept.reactive.AbstractPublisherInterceptor
- All Implemented Interfaces:
DataInterceptor<Object,Object>
- Direct Known Subclasses:
DefaultCountReactiveInterceptor, DefaultDeleteReturningManyReactiveInterceptor, DefaultDeleteReturningOneReactiveInterceptor, DefaultExistsByReactiveInterceptor, DefaultFindAllReactiveInterceptor, DefaultFindByIdReactiveInterceptor, DefaultFindCursoredPageReactiveInterceptor, DefaultFindOneReactiveInterceptor, DefaultFindPageReactiveInterceptor, DefaultFindSliceReactiveInterceptor, DefaultInsertReturningManyReactiveInterceptor, DefaultInsertReturningOneReactiveInterceptor, DefaultProcedureReactiveInterceptor, DefaultUpdateReactiveInterceptor, DefaultUpdateReturningManyReactiveInterceptor, DefaultUpdateReturningOneReactiveInterceptor
@Internal
public abstract class AbstractPublisherInterceptor
extends AbstractReactiveInterceptor<Object,Object>
Publisher interceptor.
- Since:
- 3.5.0
- Author:
- Denis Stepanov
-
Nested Class Summary
Nested classes/interfaces inherited from class AbstractQueryInterceptor
AbstractQueryInterceptor.SaveOperation -
Field Summary
Fields inherited from class AbstractReactiveInterceptor
reactiveOperationsFields inherited from class AbstractQueryInterceptor
conversionService, operations, preparedQueryResolver -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedAbstractPublisherInterceptor(@NonNull RepositoryOperations operations) Default constructor. -
Method Summary
Modifier and TypeMethodDescriptionfinal Objectintercept(RepositoryMethodKey methodKey, io.micronaut.aop.MethodInvocationContext<Object, Object> context) Intercepts a data method execution.protected abstract org.reactivestreams.Publisher<?> interceptPublisher(RepositoryMethodKey methodKey, io.micronaut.aop.MethodInvocationContext<Object, Object> context) Intercept publisher.Methods inherited from class AbstractReactiveInterceptor
count, persistOrUpdateReactive, persistWithUpdateFallbackReactiveMethods inherited from class AbstractQueryInterceptor
convertOne, convertOne, count, findEntitiesParameter, findEntityParameter, findRepositoryOperations, 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, getReturnType, getUpdateAllBatchOperation, getUpdateOperation, getUpdateOperation, hasEntityId, hasReturnTypeInRole, instantiateEntity, isEntityExistsException, isEntityUpdateCandidate, isNumber, isSaveAsInsert, isSaveAssignedIdFallbackToUpdate, persistOrUpdate, persistWithUpdateFallback, prepareCountQuery, prepareQuery, propagate, resolveSaveOperation, unwrapCompletionException, validateNullArguments
-
Constructor Details
-
AbstractPublisherInterceptor
Default constructor.- Parameters:
operations- The operations
-
-
Method Details
-
interceptPublisher
protected abstract org.reactivestreams.Publisher<?> interceptPublisher(RepositoryMethodKey methodKey, io.micronaut.aop.MethodInvocationContext<Object, Object> context) Intercept publisher.- Parameters:
methodKey- The method keycontext- The context- Returns:
- the result publisher
-
intercept
public final Object intercept(RepositoryMethodKey methodKey, io.micronaut.aop.MethodInvocationContext<Object, Object> context) Description copied from interface:DataInterceptorIntercepts a data method execution.- Parameters:
methodKey- The method keycontext- The context- Returns:
- The result
-