db.sql.api.cmd.executor.method.IForUpdateMethod Maven / Gradle / Ivy
package db.sql.api.cmd.executor.method;
public interface IForUpdateMethod {
default SELF forUpdate() {
return forUpdate(true);
}
SELF forUpdate(boolean wait);
}