Package io.micronaut.data.intercept.reactive
Reactive variants of interfaces.
- Since:
- 1.0.0
- Author:
- graemerocher
-
Interface Summary Interface Description CountReactiveInterceptor<T,R> An interceptor that executes a count query reactively and returns a reactive type that emits a single result as a RxJava Single or a Reactor Mono.DeleteAllReactiveInterceptor<T,R> An interceptor that executes a batch delete reactively.DeleteOneReactiveInterceptor<T,R> An interceptor that executes a single delete reactively.ExistsByReactiveInterceptor<T,R> An interceptor that executes an existence query reactively.FindAllReactiveInterceptor<T,R> An interceptor that executes aQuery
and aPublisher
that emits the result objects reactively.FindByIdReactiveInterceptor<T,R> An interceptor that executes an find by id reactively.FindOneReactiveInterceptor<T,R> An interceptor that executes a query reactively and returns a reactive type that emits a single result as a RxJava Single or a Reactor Mono.FindPageReactiveInterceptor<T,R> An interceptor that finds a page reactively.FindSliceReactiveInterceptor<T,R> An interceptor that finds a slice reactively.SaveAllReactiveInterceptor<T,R> An interceptor that saves a number of entities reactively.SaveEntityReactiveInterceptor<T,R> An interceptor that saves a single entity reactively.SaveOneReactiveInterceptor<T,R> An interceptor that saves a single entity reactively.UpdateAllEntitiesReactiveInterceptor<T,R> Interface for the interceptor that handles updating a list or iterable of objects.UpdateEntityReactiveInterceptor<T,R> An interceptor that updates a single entity reactively.UpdateReactiveInterceptor<T,R> An interceptor that saves a updates entity reactively.