io.tarantool.driver.api.space.options.ReplaceManyOptions Maven / Gradle / Ivy
package io.tarantool.driver.api.space.options;
import java.util.Optional;
/**
* Marker interface for space replace_many operation options
*
* @author Alexey Kuzin
*/
public interface ReplaceManyOptions>
extends OperationWithTimeoutOptions, OperationWithFieldsOptions {
/**
* Return whether all changes should not be saved if any tuple replace
* was unsuccesful.
*
* @return true, if the operation should rollback on error
*/
Optional getRollbackOnError();
/**
* Return whether the operation should be interrupted if any tuple replace
* was unsuccesful.
*
* @return true, if the operation should stop on error
*/
Optional getStopOnError();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy