Class AbstractPublisherInterceptor
- java.lang.Object
-
- io.micronaut.data.runtime.intercept.AbstractQueryInterceptor<T,R>
-
- io.micronaut.data.runtime.intercept.reactive.AbstractReactiveInterceptor<java.lang.Object,java.lang.Object>
-
- io.micronaut.data.runtime.intercept.reactive.AbstractPublisherInterceptor
-
- All Implemented Interfaces:
DataInterceptor<java.lang.Object,java.lang.Object>
- Direct Known Subclasses:
AbstractSpecificationInterceptor
,DefaultCountReactiveInterceptor
,DefaultExistsByReactiveInterceptor
,DefaultFindAllReactiveInterceptor
,DefaultFindByIdReactiveInterceptor
,DefaultFindOneReactiveInterceptor
,DefaultFindPageReactiveInterceptor
,DefaultFindSliceReactiveInterceptor
,DefaultUpdateReactiveInterceptor
@Internal public abstract class AbstractPublisherInterceptor extends AbstractReactiveInterceptor<java.lang.Object,java.lang.Object>
Publisher interceptor.- Since:
- 3.5.0
- Author:
- Denis Stepanov
-
-
Field Summary
-
Fields inherited from class io.micronaut.data.runtime.intercept.reactive.AbstractReactiveInterceptor
reactiveOperations
-
Fields inherited from class io.micronaut.data.runtime.intercept.AbstractQueryInterceptor
operations, preparedQueryResolver
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractPublisherInterceptor(RepositoryOperations operations)
Default constructor.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description java.lang.Object
intercept(RepositoryMethodKey methodKey, io.micronaut.aop.MethodInvocationContext<java.lang.Object,java.lang.Object> context)
Intercepts a data method execution.protected abstract org.reactivestreams.Publisher<?>
interceptPublisher(RepositoryMethodKey methodKey, io.micronaut.aop.MethodInvocationContext<java.lang.Object,java.lang.Object> context)
Intercept publisher.-
Methods inherited from class io.micronaut.data.runtime.intercept.reactive.AbstractReactiveInterceptor
count
-
Methods inherited from class io.micronaut.data.runtime.intercept.AbstractQueryInterceptor
convertNumberArgumentIfNecessary, 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 Detail
-
AbstractPublisherInterceptor
protected AbstractPublisherInterceptor(@NonNull RepositoryOperations operations)
Default constructor.- Parameters:
operations
- The operations
-
-
Method Detail
-
interceptPublisher
protected abstract org.reactivestreams.Publisher<?> interceptPublisher(RepositoryMethodKey methodKey, io.micronaut.aop.MethodInvocationContext<java.lang.Object,java.lang.Object> context)
Intercept publisher.- Parameters:
methodKey
- The method keycontext
- The context- Returns:
- the result publisher
-
intercept
public final java.lang.Object intercept(RepositoryMethodKey methodKey, io.micronaut.aop.MethodInvocationContext<java.lang.Object,java.lang.Object> context)
Description copied from interface:DataInterceptor
Intercepts a data method execution.- Parameters:
methodKey
- The method keycontext
- The context- Returns:
- The result
-
-