Package org.hibernate.reactive.event
Interface ReactiveResolveNaturalIdEventListener
-
public interface ReactiveResolveNaturalIdEventListener
Defines the contract for handling of resolve natural id events generated from a session.- See Also:
ResolveNaturalIdEventListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CompletionStage<Void>
onReactiveResolveNaturalId(ResolveNaturalIdEvent event)
Handle the given resolve natural id event.
-
-
-
Method Detail
-
onReactiveResolveNaturalId
CompletionStage<Void> onReactiveResolveNaturalId(ResolveNaturalIdEvent event)
Handle the given resolve natural id event.- Parameters:
event
- The resolve natural id event to be handled.
-
-