Class AbstractSourceTask.Timer

java.lang.Object
org.apache.commons.lang3.time.StopWatch
io.aiven.kafka.connect.common.source.AbstractSourceTask.Timer
Enclosing class:
AbstractSourceTask

protected static class AbstractSourceTask.Timer extends org.apache.commons.lang3.time.StopWatch
Calculates elapsed time and flags when expired.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Aborts the timer.
    Gets a Backoff Config for this timer.
    boolean
    Returns true if the timer has expired.
    long
    Gets the maximum duration for this timer.
    void
     
    void
     
    void
     

    Methods inherited from class org.apache.commons.lang3.time.StopWatch

    create, createStarted, formatSplitTime, formatTime, getMessage, getNanoTime, getSplitNanoTime, getSplitTime, getStartTime, getStopTime, getTime, getTime, isStarted, isStopped, isSuspended, resume, split, suspend, toSplitString, toString, unsplit

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Method Details

    • millisecondsRemaining

      public long millisecondsRemaining()
      Gets the maximum duration for this timer.
      Returns:
      the maximum duration for the timer.
    • isExpired

      public boolean isExpired()
      Returns true if the timer has expired.
      Returns:
      true if the timer has expired.
    • abort

      public void abort()
      Aborts the timer. Timer will report that it has expired until reset is called.
    • start

      public void start()
      Overrides:
      start in class org.apache.commons.lang3.time.StopWatch
    • stop

      public void stop()
      Overrides:
      stop in class org.apache.commons.lang3.time.StopWatch
    • reset

      public void reset()
      Overrides:
      reset in class org.apache.commons.lang3.time.StopWatch
    • getBackoffConfig

      public AbstractSourceTask.BackoffConfig getBackoffConfig()
      Gets a Backoff Config for this timer.
      Returns:
      a backoff Configuration.