Uses of Interface
org.awaitility.core.ConditionEvaluationListener
Packages that use ConditionEvaluationListener
-
Uses of ConditionEvaluationListener in org.awaitility
Fields in org.awaitility declared as ConditionEvaluationListenerModifier and TypeFieldDescriptionprivate static ConditionEvaluationListenerAwaitility.defaultConditionEvaluationListenerDefault listener of condition evaluation results.Methods in org.awaitility with parameters of type ConditionEvaluationListenerModifier and TypeMethodDescriptionstatic voidAwaitility.setDefaultConditionEvaluationListener(ConditionEvaluationListener defaultConditionEvaluationListener) Sets the default condition evaluation listener that all await statements will use.static voidAwaitility.setLoggingListener(ConditionEvaluationListener loggingListener) Sets the default logging condition evaluation listener that all await statements will use. -
Uses of ConditionEvaluationListener in org.awaitility.core
Classes in org.awaitility.core that implement ConditionEvaluationListenerModifier and TypeClassDescriptionclassSimple implementation ofConditionEvaluationListenerthat prints the condition evaluation results to the console usingSystem.out.printlnby default.Fields in org.awaitility.core declared as ConditionEvaluationListenerModifier and TypeFieldDescriptionprivate final ConditionEvaluationListenerConditionFactory.conditionEvaluationListenerThe condition evaluation listenerprivate final ConditionEvaluationListenerConditionSettings.conditionEvaluationListenerMethods in org.awaitility.core that return ConditionEvaluationListenerModifier and TypeMethodDescriptionConditionSettings.getConditionEvaluationListener()Getter for the fieldconditionResultLoggerMethods in org.awaitility.core with parameters of type ConditionEvaluationListenerModifier and TypeMethodDescriptionConditionFactory.conditionEvaluationListener(ConditionEvaluationListener conditionEvaluationListener) Handle condition evaluation results each time evaluation of a condition occurs.private voidConditionEvaluationHandler.throwClassCastExceptionBecauseConditionEvaluationListenerCouldNotBeApplied(ClassCastException e, ConditionEvaluationListener listener) Method parameters in org.awaitility.core with type arguments of type ConditionEvaluationListenerModifier and TypeMethodDescriptionprivate voidConditionEvaluationHandler.doWithListener(Consumer<ConditionEvaluationListener<T>> consumer) Constructors in org.awaitility.core with parameters of type ConditionEvaluationListenerModifierConstructorDescriptionConditionFactory(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.