Package io.micronaut.data.intercept.async
Async variants of interfaces.
- Since:
- 1.0.0
- Author:
- graemerocher
-
Interface Summary Interface Description CountAsyncInterceptor<T> An interceptor that executes a a count of all records asynchronously.DeleteAllAsyncInterceptor<T,R> An interceptor that executes a batch delete of all records asynchronously.DeleteOneAsyncInterceptor<T,R> An interceptor that executes a delete os a single record asynchronously.ExistsByAsyncInterceptor<T> An interceptor that executes a query to check for existence.FindAllAsyncInterceptor<T> An interceptor that executes a query and returns an iterable result asynchronously.FindByIdAsyncInterceptor<T> An interceptor that executes a query and returns a result asynchronously.FindOneAsyncInterceptor<T> An interceptor that executes a query and returns a result asynchronously.FindPageAsyncInterceptor<T> An interceptor that executes a query and returns aPage
asynchronously.FindSliceAsyncInterceptor<T> An interceptor that executes a query and returns aSlice
asynchronously.SaveAllAsyncInterceptor<T> An interceptor that saves multiple entities asynchronously.SaveEntityAsyncInterceptor<T> An interceptor that saves a single entity asynchronously.SaveOneAsyncInterceptor<T> An interceptor that saves a single entity asynchronously.UpdateAllEntriesAsyncInterceptor<T,R> Interface for the interceptor that handles updating a list or iterable of objects.UpdateAsyncInterceptor<T> An interceptor that executes a batch update asynchronously.UpdateEntityAsyncInterceptor<T> An interceptor that updates a single entity asynchronously.