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