Package org.apache.avro.ipc.trace.TraceCollection

Examples of org.apache.avro.ipc.trace.TraceCollection.TraceNodeStats


   */
  private void collectionNode(PrintWriter out, int patternID, int nodeID)
      throws IOException {
    VelocityContext context = new VelocityContext();
    TraceCollection col = this.activeCollections.get(patternID);
    TraceNodeStats node = col.getNodeWithID(nodeID);
    context.put("collection", col);
    context.put("node", node);
    Template t = getTemplate(velocityEngine,
      "org/apache/avro/ipc/trace/templates/node.vm");
    t.merge(context, out);
View Full Code Here


   */
  private void collectionNode(PrintWriter out, int patternID, int nodeID)
      throws IOException {
    VelocityContext context = new VelocityContext();
    TraceCollection col = this.activeCollections.get(patternID);
    TraceNodeStats node = col.getNodeWithID(nodeID);
    context.put("collection", col);
    context.put("node", node);
    Template t = getTemplate(velocityEngine,
      "org/apache/avro/ipc/trace/templates/node.vm");
    t.merge(context, out);
View Full Code Here

TOP

Related Classes of org.apache.avro.ipc.trace.TraceCollection.TraceNodeStats

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.