jio.jdbc.BatchResult 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;
/**
* A sealed interface that defines the possible outcomes of a JDBC batch operation. Implementing classes represent
* different states or results of the batch operation, such as success, partial success, or failure.
*
* This interface is part of a sealed hierarchy, and the implementing classes permitted by this interface are:
* {@link BatchSuccess}, {@link BatchPartialSuccess}, and {@link BatchFailure}.
*
*/
public sealed interface BatchResult permits BatchFailure, BatchPartialSuccess, BatchSuccess {
}