Examples of TreeOperations


Examples of ca.carleton.gcrc.couch.date.cluster.TreeOperations

    }
   
    TreeInsertProcess.Result treeInsertInfo = TreeInsertProcess.insertElements(clusterTree, treeElements);
   
    if( treeInsertInfo.isTreeModified() ){
      TreeOperations ops = clusterTree.getOperations();
      ops.saveTree(clusterTree);
      logger.info("Modified cluster tree");
    }
   
    // Update content of document
    boolean documentUpdated = false;
View Full Code Here

Examples of ca.carleton.gcrc.couch.date.cluster.TreeOperations

      throw new Exception("Error reloading cluster tree",e);
    }
  }
 
  private void performLegacyNodeTrimming() throws Exception {
    TreeOperations ops = clusterTree.getOperations();
    clusterTree.clearLegacyNodes();
    ops.saveTree(clusterTree);
    logger.info("Cleared legacy nodes");
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.