Interface Timer

  • All Superinterfaces:
    Metric

    public interface Timer
    extends Metric
    Timers record elapsed time.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void record​(long amount, java.util.concurrent.TimeUnit unit)
      Records elapsed time.
      <T> T record​(java.util.function.Supplier<T> func)
      Executes given function and records execution time.
    • Method Detail

      • record

        void record​(long amount,
                    java.util.concurrent.TimeUnit unit)
        Records elapsed time.
        Parameters:
        amount - elapsed time
        unit - elapsed time unit
      • record

        <T> T record​(java.util.function.Supplier<T> func)
        Executes given function and records execution time.
        Type Parameters:
        T - parameter type of the function
        Parameters:
        func - function to execute
        Returns:
        returning value from the function