com.scalar.db.api.OperationVisitor 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 {@link Operation}s
*
* @author Hiroyuki Yamada
*/
public interface OperationVisitor {
void visit(Get get);
void visit(Scan scan);
void visit(Put put);
void visit(Delete delete);
}