Package ca.carleton.gcrc.couch.date.cluster

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


 
  public DateSourceCouchWithCluster(CouchDesignDocument atlasDesignDocument) throws Exception {
    this.atlasDesignDocument = atlasDesignDocument;

    try {
      CouchIntervalClusterTreeFactory factory = new CouchIntervalClusterTreeFactory();
      clusterTree = factory.createClusterTree(atlasDesignDocument);
    } catch(Exception e) {
      logger.error("Unable to create a date cluster tree",e);
      throw new Exception("Unable to create a date cluster tree",e);
    }
  }
View Full Code Here

TOP

Related Classes of ca.carleton.gcrc.couch.date.cluster.CouchIntervalClusterTreeFactory

Copyright © 2018 www.massapicom. 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.