com.scalar.db.api.MutationConditionVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalardb Show documentation
Show all versions of scalardb Show documentation
A universal transaction manager that achieves database-agnostic transactions and distributed transactions that span multiple databases
package com.scalar.db.api;
/**
* A visitor class for {@code MutationCondition}
*
* @author Hiroyuki Yamada
*/
public interface MutationConditionVisitor {
void visit(PutIf condition);
void visit(PutIfExists condition);
void visit(PutIfNotExists condition);
void visit(DeleteIf condition);
void visit(DeleteIfExists condition);
}