Interface AscendingTimestampExtractor.MonotonyViolationHandler

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void handleViolation​(long elementTimestamp, long lastTimestamp)
      Called when the property of monotonously ascending timestamps is violated, i.e., when elementTimestamp < lastTimestamp.
    • Method Detail

      • handleViolation

        void handleViolation​(long elementTimestamp,
                             long lastTimestamp)
        Called when the property of monotonously ascending timestamps is violated, i.e., when elementTimestamp < lastTimestamp.
        Parameters:
        elementTimestamp - The timestamp of the current element.
        lastTimestamp - The last timestamp.