Uses of Interface
org.awaitility.pollinterval.PollInterval
Packages that use PollInterval
-
Uses of PollInterval in org.awaitility
Fields in org.awaitility declared as PollIntervalModifier and TypeFieldDescriptionprivate static final PollIntervalAwaitility.DEFAULT_POLL_INTERVALprivate static PollIntervalAwaitility.defaultPollIntervalThe default poll interval (fixed 100 ms).Methods in org.awaitility with parameters of type PollIntervalModifier and TypeMethodDescriptionstatic voidAwaitility.setDefaultPollInterval(PollInterval pollInterval) Sets the default poll interval that all await statements will use. -
Uses of PollInterval in org.awaitility.core
Fields in org.awaitility.core declared as PollIntervalModifier and TypeFieldDescriptionprivate final PollIntervalConditionFactory.pollIntervalThe poll interval.private final PollIntervalConditionSettings.pollIntervalMethods in org.awaitility.core that return PollIntervalModifier and TypeMethodDescriptionConditionSettings.getPollInterval()Getter for the fieldpollInterval.Methods in org.awaitility.core with parameters of type PollIntervalModifier and TypeMethodDescriptionprivate DurationConditionFactory.definePollDelay(Duration pollDelay, PollInterval pollInterval) Ensures backward compatibility (especially that poll delay is the same as poll interval for fixed poll interval).ConditionFactory.pollInterval(PollInterval pollInterval) Constructors in org.awaitility.core with parameters of type PollIntervalModifierConstructorDescriptionConditionFactory(String alias, WaitConstraint timeoutConstraint, PollInterval pollInterval, Duration pollDelay, boolean catchUncaughtExceptions, ExceptionIgnorer exceptionsIgnorer, ConditionEvaluationListener conditionEvaluationListener, ExecutorLifecycle executorLifecycle, FailFastCondition failFastCondition) Instantiates a new condition factory.(package private)ConditionSettings(String alias, boolean catchUncaughtExceptions, WaitConstraint waitConstraint, PollInterval pollInterval, Duration pollDelay, ConditionEvaluationListener conditionEvaluationListener, ExceptionIgnorer ignoreExceptions, ExecutorLifecycle executorLifecycle, FailFastCondition failFastCondition) Constructor for ConditionSettings. -
Uses of PollInterval in org.awaitility.pollinterval
Classes in org.awaitility.pollinterval that implement PollIntervalModifier and TypeClassDescriptionclassGenerates a non-linear poll interval based on the fibonacci sequence: [0, 1, 1, 2, 3, 5, 8, 13, ..]classGenerates a fixed (linear) poll interval based on the supplied durationclassA poll interval that is generated by a function and a start duration.