Interface | Description |
---|---|
CountAsyncInterceptor<T> |
An interceptor that executes a a count of all records asynchronously.
|
DeleteAllAsyncInterceptor<T> |
An interceptor that executes a batch delete of all records asynchronously.
|
DeleteOneAsyncInterceptor<T> |
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 a
Page asynchronously. |
FindSliceAsyncInterceptor<T> |
An interceptor that executes a query and returns a
Slice 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.
|
UpdateAsyncInterceptor<T> |
An interceptor that executes a batch update asynchronously.
|
UpdateEntityAsyncInterceptor<T> |
An interceptor that updates a single entity asynchronously.
|