Package org.hibernate.reactive.event
Interface ReactiveResolveNaturalIdEventListener
-
- All Superinterfaces:
Serializable
public interface ReactiveResolveNaturalIdEventListener extends Serializable
Defines the contract for handling of resolve natural id events generated from a session.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CompletionStage<Void>
reactiveResolveNaturalId(ResolveNaturalIdEvent event)
Handle the given resolve natural id event.
-
-
-
Method Detail
-
reactiveResolveNaturalId
CompletionStage<Void> reactiveResolveNaturalId(ResolveNaturalIdEvent event) throws HibernateException
Handle the given resolve natural id event.- Parameters:
event
- The resolve natural id event to be handled.- Throws:
HibernateException
- Indicates a problem resolving natural id to primary key
-
-