Object/Class

org.bitcoins.testkit.async

TestAsyncUtil

Related Docs: class TestAsyncUtil | package async

Permalink

object TestAsyncUtil extends TestAsyncUtil

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TestAsyncUtil
  2. TestAsyncUtil
  3. Serializable
  4. Serializable
  5. AsyncUtil
  6. BitcoinSLogger
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class RpcRetryException extends Exception with Product with Serializable

    Permalink
    Definition Classes
    AsyncUtil

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def awaitCondition(condition: () ⇒ Boolean, duration: FiniteDuration, maxTries: Int)(implicit system: ActorSystem): Future[Unit]

    Permalink
    Definition Classes
    AsyncUtil
  6. def awaitConditionF(conditionF: () ⇒ Future[Boolean], duration: FiniteDuration, maxTries: Int)(implicit system: ActorSystem): Future[Unit]

    Permalink
    Definition Classes
    AsyncUtil
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. lazy val logger: Logger

    Permalink
    Definition Classes
    BitcoinSLogger
  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. def retryUntilSatisfied(condition: ⇒ Boolean, duration: FiniteDuration, maxTries: Int)(implicit system: ActorSystem): Future[Unit]

    Permalink
    Definition Classes
    AsyncUtil
  19. def retryUntilSatisfiedF(conditionF: () ⇒ Future[Boolean], duration: FiniteDuration, maxTries: Int)(implicit system: ActorSystem): Future[Unit]

    Permalink
    Definition Classes
    AsyncUtil
  20. def retryUntilSatisfiedWithCounter(conditionF: () ⇒ Future[Boolean], duration: FiniteDuration, counter: Int, maxTries: Int, stackTrace: Array[StackTraceElement])(implicit system: ActorSystem): Future[Unit]

    Permalink
    Attributes
    protected
    Definition Classes
    TestAsyncUtil → AsyncUtil
  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  22. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  23. def transformRetryToTestFailure[T](fut: Future[T])(implicit ec: ExecutionContext): Future[T]

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from TestAsyncUtil

Inherited from Serializable

Inherited from Serializable

Inherited from AsyncUtil

Inherited from BitcoinSLogger

Inherited from AnyRef

Inherited from Any

Ungrouped