![JAR search and dependency download from the Maven repository](/logo.png)
ca.carleton.gcrc.couch.date.cluster.TreeOperations Maven / Gradle / Ivy
package ca.carleton.gcrc.couch.date.cluster;
import java.util.List;
public interface TreeOperations {
public class ClusterInfo {
Integer clusterId;
long min;
long max;
boolean ongoing;
int count;
}
List getAllElements() throws Exception;
List getElementsForClusterId(int clusterId) throws Exception;
boolean treeExists() throws Exception;
Tree loadTree() throws Exception;
Tree recoverTree() throws Exception;
void saveTree(Tree clusterTree) throws Exception;
List getAllClusterInfo() throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy