Packages

object TestAsyncUtil extends TestAsyncUtil

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TestAsyncUtil
  2. TestAsyncUtil
  3. Serializable
  4. AsyncUtil
  5. AsyncUtilApi
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def awaitCondition(condition: () => Boolean, interval: FiniteDuration = AsyncUtil.DEFAULT_INTERVAL, maxTries: Int = DEFAULT_MAX_TRIES)(implicit ec: ExecutionContext): Future[Unit]

    Returns a future that resolved when the condition becomes true, the condition is checked maxTries times, or overallTimeout is reached

    Returns a future that resolved when the condition becomes true, the condition is checked maxTries times, or overallTimeout is reached

    condition

    The blocking condition

    maxTries

    If condition is tried this many times, an exception is thrown

    Definition Classes
    AsyncUtil
  6. def awaitConditionF(conditionF: () => Future[Boolean], interval: FiniteDuration = AsyncUtil.DEFAULT_INTERVAL, maxTries: Int = DEFAULT_MAX_TRIES)(implicit ec: ExecutionContext): Future[Unit]
    Definition Classes
    AsyncUtil
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def nonBlockingSleep(duration: FiniteDuration): Future[Unit]

    Returns a future that completes after the given duration This is useful for simulating a non blocking Thread.sleep()

    Returns a future that completes after the given duration This is useful for simulating a non blocking Thread.sleep()

    Definition Classes
    AsyncUtilAsyncUtilApi
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. def retryUntilSatisfied(condition: => Boolean, interval: FiniteDuration = AsyncUtil.DEFAULT_INTERVAL, maxTries: Int = DEFAULT_MAX_TRIES)(implicit ec: ExecutionContext): Future[Unit]
    Definition Classes
    AsyncUtil
  19. def retryUntilSatisfiedF(conditionF: () => Future[Boolean], interval: FiniteDuration = AsyncUtil.DEFAULT_INTERVAL, maxTries: Int = DEFAULT_MAX_TRIES)(implicit ec: ExecutionContext): Future[Unit]

    The returned Future completes when condition becomes true

    The returned Future completes when condition becomes true

    conditionF

    The condition being waited on

    maxTries

    If condition is tried this many times, the Future fails

    returns

    A Future[Unit] that succeeds if condition becomes true and fails otherwise

    Definition Classes
    AsyncUtil
  20. def retryUntilSatisfiedWithCounter(conditionF: () => Future[Boolean], duration: FiniteDuration, counter: Int, maxTries: Int, stackTrace: Array[StackTraceElement])(implicit ec: ExecutionContext): Future[Unit]
    Attributes
    protected
    Definition Classes
    TestAsyncUtilAsyncUtil
  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. def transformRetryToTestFailure[T](fut: Future[T])(implicit ec: ExecutionContext): Future[T]

    As opposed to the AsyncUtil in the rpc project, in the testkit, we can assume that TestAsyncUtil methods are being called from tests and as such, we want to trim the stack trace to exclude stack elements that occur before the beginning of a test.

    As opposed to the AsyncUtil in the rpc project, in the testkit, we can assume that TestAsyncUtil methods are being called from tests and as such, we want to trim the stack trace to exclude stack elements that occur before the beginning of a test. Additionally, we want to transform RpcRetryExceptions to TestFailedExceptions which conveniently mention the line that called the TestAsyncUtil method.

  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from TestAsyncUtil

Inherited from Serializable

Inherited from AsyncUtil

Inherited from AsyncUtilApi

Inherited from AnyRef

Inherited from Any

Ungrouped