Package com.google.apphosting.datastore.DatastoreV3Pb

Examples of com.google.apphosting.datastore.DatastoreV3Pb.Transaction


   * Due to pb dependency issues, Transaction pb is redefined for TaskQueue.
   * Keep in sync with DatastoreServiceImpl.localTxnToRemoteTxn.
   */
  private static Transaction localTxnToRemoteTxn(
      com.google.appengine.api.datastore.Transaction local) {
    Transaction remote = new Transaction();
    remote.setApp(local.getApp());
    remote.setHandle(Long.parseLong(local.getId()));
    return remote;
  }
View Full Code Here

TOP

Related Classes of com.google.apphosting.datastore.DatastoreV3Pb.Transaction

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.