Package dovetaildb.apiservice

Examples of dovetaildb.apiservice.ChangesetBuffer


  ConcurrentHashMap<String, DbRecord> repo;

 
  public ApiService newSession(String db) {
    DbRecord rec = repo.get(db);
    ApiService api = new ChangesetBuffer(rec.db, rec.coordinator);
    if (rec.apiServiceWrapperFn != null)
      api = rec.apiServiceWrapperFn.wrapApiService(api);
    return api;
  }
View Full Code Here

TOP

Related Classes of dovetaildb.apiservice.ChangesetBuffer

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.