Package org.hibernate.reactive.tuple
Class StageGenerator
- java.lang.Object
-
- org.hibernate.reactive.tuple.StageGenerator
-
- All Implemented Interfaces:
Serializable
,BeforeExecutionGenerator
,Generator
@Incubating public abstract class StageGenerator extends Object implements BeforeExecutionGenerator
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StageGenerator()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description Object
generate(SharedSessionContractImplementor session, Object owner, Object currentValue, EventType eventType)
abstract CompletionStage<Object>
generate(Stage.Session session, Object owner, Object currentValue, EventType eventType)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.generator.BeforeExecutionGenerator
generatedOnExecution
-
Methods inherited from interface org.hibernate.generator.Generator
allowAssignedIdentifiers, generatedOnExecution, generatesOnInsert, generatesOnUpdate, generatesSometimes, getEventTypes
-
-
-
-
Method Detail
-
generate
public Object generate(SharedSessionContractImplementor session, Object owner, Object currentValue, EventType eventType)
- Specified by:
generate
in interfaceBeforeExecutionGenerator
-
generate
public abstract CompletionStage<Object> generate(Stage.Session session, Object owner, Object currentValue, EventType eventType)
-
-