Class Ticker

java.lang.Object
com.landawn.abacus.util.Ticker

public abstract class Ticker extends Object
Note: Copied from Google Guava under Apache License v2.0

A time source; returns a time value representing the number of nanoseconds elapsed since some fixed but arbitrary point in time. Note that most users should use Stopwatch instead of interacting with this class directly.

Warning: this interface can only be used to measure elapsed time, not wall time.

Since:
10.0 (mostly source-compatible since 9.0)
Author:
Kevin Bourrillion
  • Method Details

    • read

      public abstract long read()
      Returns the number of nanoseconds elapsed since this ticker's fixed point of reference.
      Returns:
    • systemTicker

      public static Ticker systemTicker()
      A ticker that reads the current time using System.nanoTime().
      Returns:
      Since:
      10.0