Class Timing

java.lang.Object
org.pipservices3.components.count.CounterTiming

public class Timing
extends Object
Callback object returned by ICounters.beginTiming(String) to end timing of execution block and update the associated counter.

### Example ###

 
 Timing timing = counters.beginTiming("mymethod.exec_time");
 try {
     ...
 } finally {
   timing.endTiming();
 }
 
 
  • Constructor Details

    • Timing

      public Timing()
      Creates a new instance of the timing callback object.
    • Timing

      public Timing​(String counter, ITimingCallback callback)
      Creates a new instance of the timing callback object.
      Parameters:
      counter - an associated counter name
      callback - a callback that shall be called when endTiming is called.
  • Method Details

    • endTiming

      public void endTiming()
      Ends timing of an execution block, calculates elapsed time and updates the associated counter.