Interface ITimingCallback

All Known Implementing Classes:
CachedCounters, CompositeCounters, LogCounters

public interface ITimingCallback
Interface for a callback to end measurement of execution elapsed time.
See Also:
Timing
  • Method Summary

    Modifier and Type Method Description
    void endTiming​(String name, float elapsed)
    Ends measurement of execution elapsed time and updates specified counter.
  • Method Details

    • endTiming

      void endTiming​(String name, float elapsed)
      Ends measurement of execution elapsed time and updates specified counter.
      Parameters:
      name - a counter name
      elapsed - execution elapsed time in milliseconds to update the counter.
      See Also:
      Timing.endTiming()