All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ca.carleton.gcrc.couch.date.cluster.TreeOperations Maven / Gradle / Ivy

There is a newer version: 2.2.7
Show newest version
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