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 Summary
Constructors Constructor Description Timing()
Creates a new instance of the timing callback object.Timing(String counter, ITimingCallback callback)
Creates a new instance of the timing callback object. -
Method Summary
Modifier and Type Method Description void
endTiming()
Ends timing of an execution block, calculates elapsed time and updates the associated counter.
-
Constructor Details
-
Timing
public Timing()Creates a new instance of the timing callback object. -
Timing
Creates a new instance of the timing callback object.- Parameters:
counter
- an associated counter namecallback
- 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.
-