Interface Ticker

    • Method Detail

      • systemTicker

        static Ticker systemTicker()
        Returns the singleton Ticker that returns the values from the real system clock source. However, note that this is not the same as System.nanoTime() because we apply a fixed offset to the nanoTime.
      • newMockTicker

        static MockTicker newMockTicker()
        Returns a newly created mock Ticker that allows the caller control the flow of time. This can be useful when you test time-sensitive logic without waiting for too long or introducing flakiness due to non-deterministic nature of system clock.
      • initialNanoTime

        long initialNanoTime()
        The initial value used for delay and computations based upon a monotonic time source.
        Returns:
        initial value used for delay and computations based upon a monotonic time source.
      • nanoTime

        long nanoTime()
        The time elapsed since initialization of this class in nanoseconds. This may return a negative number just like System.nanoTime().