jio.jdbc.TxResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jio-jdbc Show documentation
Show all versions of jio-jdbc Show documentation
Functional and reactive JDBC client in Java
package jio.jdbc;
/**
* Represents the result of a transaction. It is a sealed interface permitting two possible outcomes: {@link TxSuccess}
* and {@link TxPartialSuccess}.
*/
public sealed interface TxResult permits TxSuccess, TxPartialSuccess {
}