Uses of Interface
org.springframework.data.mapping.callback.EntityCallback
Package
Description
Mapping callback API and implementation base classes.
-
Uses of EntityCallback in org.springframework.data.mapping.callback
Modifier and TypeMethodDescriptionvoid
EntityCallbacks.addEntityCallback
(EntityCallback<?> callback) Add the givencallback
using generic type argument detection for identification of supported types.void
ReactiveEntityCallbacks.addEntityCallback
(EntityCallback<?> callback) Add the givencallback
using generic type argument detection for identification of supported types.static EntityCallbacks
EntityCallbacks.create
(EntityCallback<?>... callbacks) Create a newEntityCallbacks
instance with givencallbacks
.static ReactiveEntityCallbacks
ReactiveEntityCallbacks.create
(EntityCallback<?>... callbacks) Create a newReactiveEntityCallbacks
instance with givencallbacks
.Modifier and TypeMethodDescription<T> T
EntityCallbacks.callback
(Class<? extends EntityCallback> callbackType, T entity, Object... args) Invoke matchingentity callbacks
with given arguments.<T> reactor.core.publisher.Mono<T>
ReactiveEntityCallbacks.callback
(Class<? extends EntityCallback> callbackType, T entity, Object... args) Onsubscribe
invoke the matchingentity callbacks
with given arguments.