Class AbstractPublisherInterceptor
java.lang.Object
io.micronaut.data.runtime.intercept.AbstractQueryInterceptor<T,R>
io.micronaut.data.runtime.intercept.reactive.AbstractReactiveInterceptor<Object,Object>
io.micronaut.data.runtime.intercept.reactive.AbstractPublisherInterceptor
- Direct Known Subclasses:
DefaultCountReactiveInterceptor,DefaultExistsByReactiveInterceptor,DefaultFindAllReactiveInterceptor,DefaultFindByIdReactiveInterceptor,DefaultFindOneReactiveInterceptor,DefaultFindPageReactiveInterceptor,DefaultFindSliceReactiveInterceptor,DefaultUpdateReactiveInterceptor
@Internal
public abstract class AbstractPublisherInterceptor
extends AbstractReactiveInterceptor<Object,Object>
Publisher interceptor.
- Since:
- 3.5.0
-
Field Summary
Fields inherited from class io.micronaut.data.runtime.intercept.reactive.AbstractReactiveInterceptor
reactiveOperationsFields inherited from class io.micronaut.data.runtime.intercept.AbstractQueryInterceptor
conversionService, operations, preparedQueryResolver -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedAbstractPublisherInterceptor(@NonNull io.micronaut.data.operations.RepositoryOperations operations) Default constructor. -
Method Summary
Modifier and TypeMethodDescriptionfinal Objectintercept(io.micronaut.data.intercept.RepositoryMethodKey methodKey, io.micronaut.aop.MethodInvocationContext<Object, Object> context) protected abstract org.reactivestreams.Publisher<?>interceptPublisher(io.micronaut.data.intercept.RepositoryMethodKey methodKey, io.micronaut.aop.MethodInvocationContext<Object, Object> context) Intercept publisher.Methods inherited from class io.micronaut.data.runtime.intercept.reactive.AbstractReactiveInterceptor
countMethods inherited from class io.micronaut.data.runtime.intercept.AbstractQueryInterceptor
convertOne, convertOne, count, findEntitiesParameter, findEntityParameter, getDeleteAllBatchOperation, getDeleteBatchOperation, getDeleteBatchOperation, getDeleteOperation, getEntitiesParameter, getEntityParameter, getInsertBatchOperation, getInsertBatchOperation, getInsertOperation, getInsertOperation, getPageable, getPagedQuery, getParameterValueMap, getRequiredEntity, getRequiredRootEntity, getReturnType, getUpdateAllBatchOperation, getUpdateOperation, getUpdateOperation, instantiateEntity, isNullable, isNumber, prepareCountQuery, prepareQuery, prepareQuery, prepareQuery, validateNullArguments
-
Constructor Details
-
AbstractPublisherInterceptor
protected AbstractPublisherInterceptor(@NonNull @NonNull io.micronaut.data.operations.RepositoryOperations operations) Default constructor.- Parameters:
operations- The operations
-
-
Method Details
-
interceptPublisher
protected abstract org.reactivestreams.Publisher<?> interceptPublisher(io.micronaut.data.intercept.RepositoryMethodKey methodKey, io.micronaut.aop.MethodInvocationContext<Object, Object> context) Intercept publisher.- Parameters:
methodKey- The method keycontext- The context- Returns:
- the result publisher
-
intercept
-