Package ca.carleton.gcrc.nunaliit2.couch.replication

Examples of ca.carleton.gcrc.nunaliit2.couch.replication.ReplicationWorkerThread


    if( null == couchClient ) {
      throw new ServletException("Replication worker requires a CouchDb client");
    }
   
    try {
      replicationWorker = new ReplicationWorker();
      replicationWorker.setCouchClient(couchClient);
      replicationWorker.start();
     
    } catch (Exception e) {
      throw new ServletException("Error starting replication worker",e);
View Full Code Here


    if( null == couchClient ) {
      throw new ServletException("Replication worker requires a CouchDb client");
    }
   
    try {
      replicationWorker = new ReplicationWorker();
      replicationWorker.setCouchClient(couchClient);
      replicationWorker.start();
     
    } catch (Exception e) {
      throw new ServletException("Error starting replication worker",e);
View Full Code Here

TOP

Related Classes of ca.carleton.gcrc.nunaliit2.couch.replication.ReplicationWorkerThread

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.