Uses of Enum Class
com.vaadin.flow.signals.impl.Transaction.Type
Packages that use Transaction.Type
-
Uses of Transaction.Type in com.vaadin.flow.signals.impl
Methods in com.vaadin.flow.signals.impl that return Transaction.TypeModifier and TypeMethodDescriptionstatic Transaction.TypeReturns the enum constant of this class with the specified name.static Transaction.Type[]Transaction.Type.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.vaadin.flow.signals.impl with parameters of type Transaction.TypeModifier and TypeMethodDescriptionstatic TransactionOperation<Void> Transaction.runInTransaction(TransactionTask transactionTask, Transaction.Type transactionType) Runs the given task in a transaction of the given type and returns an operation object without a value.static <T extends @Nullable Object>
TransactionOperation<T> Transaction.runInTransaction(ValueSupplier<T> transactionTask, Transaction.Type transactionType) Runs the given supplier in a transaction of the given type and returns an operation object that wraps the supplier value.