Package water.api.ProfilerHandler

Examples of water.api.ProfilerHandler.Profiler


  public String[][] stacktraces;
  @API(help="Array of Profile Counts, one per Node in the Cluster")
  public int[][] counts;

  @Override public Profiler createImpl() {
    Profiler profiler = new Profiler();
    if (depth < 1) throw new IllegalArgumentException("depth must be >= 1.");
    profiler._depth = depth;
    profiler._stacktraces = stacktraces;
    profiler._counts = counts;
    return profiler;
View Full Code Here

TOP

Related Classes of water.api.ProfilerHandler.Profiler

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.