io.quarkus.redis.datasource.transactions.OptimisticLockingTransactionResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-redis-client Show documentation
Show all versions of quarkus-redis-client Show documentation
Connect to Redis in either imperative or reactive style
package io.quarkus.redis.datasource.transactions;
/**
* A structure holding the result of the commands executed in a transaction. Note that the result are ordered, and the
* (0-based) index of the command must be used to retrieve the result of a specific command.
*
* In addition, it provides the rerult from the pre-transaction block.
*/
public interface OptimisticLockingTransactionResult extends TransactionResult {
/**
* Retrieves the result from the pre-transaction block
*
* @return the value produces by the pre-transaction block
*/
I getPreTransactionResult();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy