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

Type Members

  1. sealed trait RetryMode extends AnyRef
    Definition Classes
    AsyncUtil

Value Members

  1. case object Exponential extends RetryMode with Product with Serializable
    Definition Classes
    AsyncUtil
  2. case object Linear extends RetryMode with Product with Serializable
    Definition Classes
    AsyncUtil
  3. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def ##: Int
    Definition Classes
    AnyRef → Any
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. 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
  8. def awaitConditionF(conditionF: () => Future[Boolean], interval: FiniteDuration = AsyncUtil.DEFAULT_INTERVAL, maxTries: Int = DEFAULT_MAX_TRIES)(implicit ec: ExecutionContext): Future[Unit]
    Definition Classes
    AsyncUtil
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. 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
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. def retryUntilSatisfied(condition: => Boolean, interval: FiniteDuration = AsyncUtil.DEFAULT_INTERVAL, maxTries: Int = DEFAULT_MAX_TRIES)(implicit ec: ExecutionContext): Future[Unit]
    Definition Classes
    AsyncUtil
  21. def retryUntilSatisfiedF(conditionF: () => Future[Boolean], interval: FiniteDuration = AsyncUtil.DEFAULT_INTERVAL, maxTries: Int = DEFAULT_MAX_TRIES, mode: RetryMode = Linear)(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
  22. def retryUntilSatisfiedWithCounter(conditionF: () => Future[Boolean], duration: FiniteDuration, counter: Int, maxTries: Int, stackTrace: Array[StackTraceElement], mode: RetryMode)(implicit ec: ExecutionContext): Future[Unit]
    Attributes
    protected
    Definition Classes
    TestAsyncUtilAsyncUtil
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. 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.

  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. 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