Package com.onpositive.gae.profiling.rpc.DataStoreCallStorageAttachment

Examples of com.onpositive.gae.profiling.rpc.DataStoreCallStorageAttachment.PutRequestInfo


        for (Element e : elements) {
          types.add(e.getType());
        }
      }
      this.cost = calculateCosts(putRequest);
      requestInfo = new PutRequestInfo("Put:" + types, stackTrace);

    }
View Full Code Here


          bld.append("<b>Count:</b> " + info.getCount());
          bld.append("<br/>");
          bld.append("<b>Api time(ms):</b> " + info.getCost());

          if (info instanceof PutRequestInfo) {
            PutRequestInfo pr = (PutRequestInfo) info;
            if (pr.entityWritesBytes != 0) {
              bld.append("<br/>");
              bld.append("<b>Entity writes:</b> "
                  + pr.entityWrites);
              bld.append(" <b>Entity writes bytes:</b> "
View Full Code Here

TOP

Related Classes of com.onpositive.gae.profiling.rpc.DataStoreCallStorageAttachment.PutRequestInfo

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.