Uses of Interface
org.awaitility.core.ConditionEvaluationListener
-
Packages that use ConditionEvaluationListener Package Description org.awaitility org.awaitility.core -
-
Uses of ConditionEvaluationListener in org.awaitility
Fields in org.awaitility declared as ConditionEvaluationListener Modifier and Type Field Description private static ConditionEvaluationListenerAwaitility. defaultConditionEvaluationListenerDefault listener of condition evaluation results.Methods in org.awaitility with parameters of type ConditionEvaluationListener Modifier and Type Method Description static 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 ConditionEvaluationListener Modifier and Type Class Description classConditionEvaluationLoggerSimple implementation ofConditionEvaluationListenerthat prints the condition evaluation results to the console usingSystem.out.printlnby default.Fields in org.awaitility.core declared as ConditionEvaluationListener Modifier and Type Field Description private ConditionEvaluationListenerConditionFactory. conditionEvaluationListenerThe condition evaluation listenerprivate ConditionEvaluationListenerConditionSettings. conditionEvaluationListenerMethods in org.awaitility.core that return ConditionEvaluationListener Modifier and Type Method Description ConditionEvaluationListenerConditionSettings. getConditionEvaluationListener()Getter for the fieldconditionResultLoggerMethods in org.awaitility.core with parameters of type ConditionEvaluationListener Modifier and Type Method Description ConditionFactoryConditionFactory. conditionEvaluationListener(ConditionEvaluationListener conditionEvaluationListener)Handle condition evaluation results each time evaluation of a condition occurs.private voidConditionEvaluationHandler. throwClassCastExceptionBecauseConditionEvaluationListenerCouldNotBeApplied(java.lang.ClassCastException e, ConditionEvaluationListener listener)Method parameters in org.awaitility.core with type arguments of type ConditionEvaluationListener Modifier and Type Method Description private voidConditionEvaluationHandler. doWithListener(java.util.function.Consumer<ConditionEvaluationListener<T>> consumer)Constructors in org.awaitility.core with parameters of type ConditionEvaluationListener Constructor Description ConditionFactory(java.lang.String alias, WaitConstraint timeoutConstraint, PollInterval pollInterval, java.time.Duration pollDelay, boolean catchUncaughtExceptions, ExceptionIgnorer exceptionsIgnorer, ConditionEvaluationListener conditionEvaluationListener, ExecutorLifecycle executorLifecycle, FailFastCondition failFastCondition)Instantiates a new condition factory.ConditionSettings(java.lang.String alias, boolean catchUncaughtExceptions, WaitConstraint waitConstraint, PollInterval pollInterval, java.time.Duration pollDelay, ConditionEvaluationListener conditionEvaluationListener, ExceptionIgnorer ignoreExceptions, ExecutorLifecycle executorLifecycle, FailFastCondition failFastCondition)Constructor for ConditionSettings.
-