Package ca.jimr.gae.profiler.MiniProfiler

Examples of ca.jimr.gae.profiler.MiniProfiler.Step


  {
    Profile result = null;
    MiniProfiler.start();
    try
    {
      Step s = MiniProfiler.step("Step 1");
      s.close();
    } finally
    {
      result = MiniProfiler.stop();
    }
View Full Code Here


  {
    Profile result = null;
    MiniProfiler.start();
    try
    {
      Step s1 = MiniProfiler.step("Step 1");
      Step s11 = MiniProfiler.step("Step 1.1");
      s11.close();
      s1.close();
      Step s2 = MiniProfiler.step("Step 2");
      Step s21 = MiniProfiler.step("Step 2.1");
      s21.close();
      Step s22 = MiniProfiler.step("Step 2.2");
      s22.close();
      s2.close();
    } finally
    {
      result = MiniProfiler.stop();
    }
View Full Code Here

TOP

Related Classes of ca.jimr.gae.profiler.MiniProfiler.Step

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.