Package org.hibernate.event.spi
Interface RefreshContext
-
public interface RefreshContext
ARefreshEvent
represents a refresh operation applied to a single entity. ARefreshContext
is propagated across all cascaded refresh operations, and keeps track of all the entities we've already visited.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description boolean
add(Object entity)
static RefreshContext
create()
default boolean
isEmpty()
-
-
-
Method Detail
-
add
boolean add(Object entity)
-
isEmpty
default boolean isEmpty()
-
create
static RefreshContext create()
-
-