akka.remote.transport.TestTransport

SwitchableLoggedBehavior

Related Doc: package TestTransport

class SwitchableLoggedBehavior[A, B] extends Behavior[A, B]

Test utility to make behavior of functions that return some Future[B] controllable from tests. This tool is able to overwrite default behavior with any generic behavior, including failure, and exposes control to the timing of the completition of the returned future.

The utility is implemented as a stack of behaviors, where the behavior on the top of the stack represents the currently active behavior. The bottom of the stack always contains the defaultBehavior which can not be popped out.

A

Parameter type of the wrapped function. If it takes multiple parameters it must be wrapped in a tuple.

B

Type parameter of the future that the original function returns.

Source
TestTransport.scala
Linear Supertypes
(A) ⇒ Future[B], AnyRef, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SwitchableLoggedBehavior
  2. Function1
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SwitchableLoggedBehavior(defaultBehavior: Behavior[A, B], logCallback: (A) ⇒ Unit)

    defaultBehavior

    The original behavior that might be overwritten. It is always possible to restore this behavior

    logCallback

    Function that will be called independently of the current active behavior

Value Members

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

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

    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from SwitchableLoggedBehavior[A, B] to any2stringadd[SwitchableLoggedBehavior[A, B]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (SwitchableLoggedBehavior[A, B], B)

    Implicit information
    This member is added by an implicit conversion from SwitchableLoggedBehavior[A, B] to ArrowAssoc[SwitchableLoggedBehavior[A, B]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  6. def andThen[A](g: (Future[B]) ⇒ A): (A) ⇒ A

    Definition Classes
    Function1
    Annotations
    @unspecialized()
  7. def apply(params: A): Future[B]

    Applies the current behavior, and invokes the callback.

    Applies the current behavior, and invokes the callback.

    params

    The parameters of this behavior.

    returns

    The result of this behavior wrapped in a future.

    Definition Classes
    SwitchableLoggedBehavior → Function1
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def compose[A](g: (A) ⇒ A): (A) ⇒ Future[B]

    Definition Classes
    Function1
    Annotations
    @unspecialized()
  11. def ensuring(cond: (SwitchableLoggedBehavior[A, B]) ⇒ Boolean, msg: ⇒ Any): SwitchableLoggedBehavior[A, B]

    Implicit information
    This member is added by an implicit conversion from SwitchableLoggedBehavior[A, B] to Ensuring[SwitchableLoggedBehavior[A, B]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (SwitchableLoggedBehavior[A, B]) ⇒ Boolean): SwitchableLoggedBehavior[A, B]

    Implicit information
    This member is added by an implicit conversion from SwitchableLoggedBehavior[A, B] to Ensuring[SwitchableLoggedBehavior[A, B]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ Any): SwitchableLoggedBehavior[A, B]

    Implicit information
    This member is added by an implicit conversion from SwitchableLoggedBehavior[A, B] to Ensuring[SwitchableLoggedBehavior[A, B]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): SwitchableLoggedBehavior[A, B]

    Implicit information
    This member is added by an implicit conversion from SwitchableLoggedBehavior[A, B] to Ensuring[SwitchableLoggedBehavior[A, B]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from SwitchableLoggedBehavior[A, B] to StringFormat[SwitchableLoggedBehavior[A, B]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  19. final def getClass(): Class[_]

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

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

    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  25. def pop(): Unit

    Restores the previous behavior.

  26. def push(behavior: Behavior[A, B]): Unit

    Changes the current behavior to the provided one.

    Changes the current behavior to the provided one.

    behavior

    Function that takes a parameter type A and returns a Future[B].

  27. def pushConstant(c: B): Unit

    Changes the behavior to return a completed future with the given constant value.

    Changes the behavior to return a completed future with the given constant value.

    c

    The constant the future will be completed with.

  28. def pushDelayed: Promise[Unit]

    Enables control of the completion of the previously active behavior.

    Enables control of the completion of the previously active behavior. Wraps the previous behavior in a new one, returns a control promise that starts the original behavior after the control promise is completed.

    returns

    A promise, which delays the completion of the original future until after this promise is completed.

  29. def pushError(e: Throwable): Unit

    Changes the current behavior to return a failed future containing the given Throwable.

    Changes the current behavior to return a failed future containing the given Throwable.

    e

    The throwable the failed future will contain.

  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  31. def toString(): String

    Definition Classes
    Function1 → AnyRef → Any
  32. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. def [B](y: B): (SwitchableLoggedBehavior[A, B], B)

    Implicit information
    This member is added by an implicit conversion from SwitchableLoggedBehavior[A, B] to ArrowAssoc[SwitchableLoggedBehavior[A, B]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from (A) ⇒ Future[B]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from SwitchableLoggedBehavior[A, B] to any2stringadd[SwitchableLoggedBehavior[A, B]]

Inherited by implicit conversion StringFormat from SwitchableLoggedBehavior[A, B] to StringFormat[SwitchableLoggedBehavior[A, B]]

Inherited by implicit conversion Ensuring from SwitchableLoggedBehavior[A, B] to Ensuring[SwitchableLoggedBehavior[A, B]]

Inherited by implicit conversion ArrowAssoc from SwitchableLoggedBehavior[A, B] to ArrowAssoc[SwitchableLoggedBehavior[A, B]]

Ungrouped