A configuration parameter that specifies the number of dismissals to wait for before returning normally
from an await call on a Waiter.
A TimeoutConfigParam that specifies the amount of time to sleep after
each retry: each unsuccessful invocation of the by-name parameter passed to eventually or
each query of a future passed to whenReady.
A TimeoutConfigParam that specifies the maximum amount of time to allow retries: either invocations of the
by-name parameter passed to eventually that give an unsuccessful result, or futures passed to whenReady that
are canceled, or expired, or not ready.
Configuration object for traits Eventually and Futures.
Abstract class defining a family of configuration parameters for traits Eventually and Futures.
Class that facilitates performing assertions outside the main test thread, such as assertions in callback methods that are invoked asynchronously.
Returns a Dismissals configuration parameter containing the passed value, which
specifies the number of dismissals to wait for before returning normally from an await
call on a Waiter.
Returns a Dismissals configuration parameter containing the passed value, which
specifies the number of dismissals to wait for before returning normally from an await
call on a Waiter.
Returns an Interval configuration parameter containing the passed value, which
specifies the amount of time to sleep after
each retry: each unsuccessful invocation of the by-name parameter passed to eventually
or each query of a non-ready, canceled, or expired future passed to whenReady.
Returns an Interval configuration parameter containing the passed value, which
specifies the amount of time to sleep after
each retry: each unsuccessful invocation of the by-name parameter passed to eventually
or each query of a non-ready, canceled, or expired future passed to whenReady.
Returns a Timeout configuration parameter containing the passed value, which
specifies the maximum amount of time to retry: to allow invocations of the
by-name parameter passed to eventually to give an unsuccessful result, or to
allow a future passed to whenReady to be canceled, or expired, or not ready.
Returns a Timeout configuration parameter containing the passed value, which
specifies the maximum amount of time to retry: to allow invocations of the
by-name parameter passed to eventually to give an unsuccessful result, or to
allow a future passed to whenReady to be canceled, or expired, or not ready.
Implicit TimeoutConfig value providing default configuration values.
Implicit TimeoutConfig value providing default configuration values.
To change the default configuration, override or hide this val with another implicit
TimeoutConfig containing your desired default configuration values.
Companion object that facilitates the importing of
AsyncAssertionsmembers as an alternative to mixing in the trait. One use case is to importAsyncAssertions's members so you can use them in the Scala interpreter.