Uses of Enum Class
st.orm.TransactionPropagation
Packages that use TransactionPropagation
Package
Description
Foundation of the data model: the mapping annotations and the record interfaces.
Java client API: templates, query builders and transactions.
-
Uses of TransactionPropagation in st.orm
Methods in st.orm that return TransactionPropagationModifier and TypeMethodDescriptionTransactionOptions.propagation()Returns the value of thepropagationrecord component.static TransactionPropagationReturns the enum constant of this class with the specified name.static TransactionPropagation[]TransactionPropagation.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in st.orm with parameters of type TransactionPropagationModifier and TypeMethodDescriptionTransactionOptions.withPropagation(TransactionPropagation propagation) Constructors in st.orm with parameters of type TransactionPropagationModifierConstructorDescriptionTransactionOptions(TransactionPropagation propagation, TransactionIsolation isolation, Integer timeoutSeconds, Boolean readOnly) Creates an instance of aTransactionOptionsrecord class. -
Uses of TransactionPropagation in st.orm.template
Methods in st.orm.template with parameters of type TransactionPropagationModifier and TypeMethodDescriptionstatic <R,E extends Exception>
RTransactions.transaction(TransactionPropagation propagation, TransactionBlock<R, E> block) Executes the given block within a database transaction with the given propagation.