Uses of Interface
org.hibernate.action.spi.Executable
-
Packages that use Executable Package Description org.hibernate.action.internal The various concrete action implementations.org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate. -
-
Uses of Executable in org.hibernate.action.internal
Classes in org.hibernate.action.internal that implement Executable Modifier and Type Class Description class
AbstractEntityInsertAction
A base class for entity insert actions.class
BulkOperationCleanupAction
AnActionQueue
Executable
for ensuring shared cache cleanup in relation to performed bulk HQL queries.class
CollectionAction
Any action relating to insert/update/delete of a collectionclass
CollectionRecreateAction
The action for recreating a collectionclass
CollectionRemoveAction
The action for removing a collectionclass
CollectionUpdateAction
The action for updating a collectionclass
EntityAction
Base class for actions relating to insert/update/delete of an entity instance.class
EntityDeleteAction
The action for performing an entity deletion.class
EntityIdentityInsertAction
The action for performing entity insertions when entity is using IDENTITY column identifier generationclass
EntityInsertAction
The action for performing an entity insertion, for entities not defined to use IDENTITY generation.class
EntityUpdateAction
The action for performing entity updates.class
OrphanRemovalAction
class
QueuedOperationCollectionAction
If a collection is extra lazy and has queued ops, we still need to process them. -
Uses of Executable in org.hibernate.engine.spi
Subinterfaces of Executable in org.hibernate.engine.spi Modifier and Type Interface Description interface
ComparableExecutable
We frequently need the union type of Executable, Comparable of ComparableExecutable, Serializable; this interface represents such union; this helps to simplify several generic signatures.Methods in org.hibernate.engine.spi with type parameters of type Executable Modifier and Type Method Description <E extends Executable & Comparable<?>>
voidActionQueue. execute(E executable)
-