Package org.hibernate.reactive.event
Interface ReactiveFlushEventListener
-
- All Superinterfaces:
Serializable
public interface ReactiveFlushEventListener extends Serializable
Defines the contract for handling of reactive session flush events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CompletionStage<Void>
reactiveOnFlush(FlushEvent event)
Handle the given flush event.
-
-
-
Method Detail
-
reactiveOnFlush
CompletionStage<Void> reactiveOnFlush(FlushEvent event) throws HibernateException
Handle the given flush event.- Parameters:
event
- The flush event to be handled.- Throws:
HibernateException
-
-