Uses of Class
com.vaadin.signals.operations.TransactionOperation
Packages that use TransactionOperation
-
Uses of TransactionOperation in com.vaadin.signals
Methods in com.vaadin.signals that return TransactionOperationModifier and TypeMethodDescriptionstatic TransactionOperation<Void> Signal.runInTransaction(Runnable transactionTask) Runs the provided runnable in a transaction.static <T> TransactionOperation<T> Signal.runInTransaction(Supplier<T> transactionTask) Runs the provided supplier in a transaction. -
Uses of TransactionOperation in com.vaadin.signals.impl
Methods in com.vaadin.signals.impl that return TransactionOperationModifier and TypeMethodDescriptionstatic TransactionOperation<Void> Transaction.runInTransaction(Runnable transactionTask) Runs the given task in a regular transaction and returns an operation object without a value.static TransactionOperation<Void> Transaction.runInTransaction(Runnable 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> TransactionOperation<T> Transaction.runInTransaction(Supplier<T> transactionTask) Runs the given supplier in a regular transaction and returns an operation object that wraps the supplier value.static <T> TransactionOperation<T> Transaction.runInTransaction(Supplier<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.