Class AppiumFluentWait.IterationInfo

  • Enclosing class:
    AppiumFluentWait<T>

    public static class AppiumFluentWait.IterationInfo
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      IterationInfo​(long number, java.time.Duration elapsed, java.time.Duration total, java.time.Duration interval)
      The class is used to represent information about a single loop iteration in AppiumFluentWait.until(Function) method.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • IterationInfo

        public IterationInfo​(long number,
                             java.time.Duration elapsed,
                             java.time.Duration total,
                             java.time.Duration interval)
        The class is used to represent information about a single loop iteration in AppiumFluentWait.until(Function) method.
        Parameters:
        number - loop iteration number, starts from 1
        elapsed - the amount of elapsed time since the loop started
        total - the amount of total time to run the loop
        interval - the default time interval for each loop iteration