TestTransport

@deprecated("Classic remoting is deprecated, use Artery", "2.6.0")
Companion:
class
Deprecated
Source:
TestTransport.scala
class Object
trait Matchable
class Any

Type members

Classlikes

sealed trait Activity

Base trait for activities that are logged by akka.remote.transport.TestTransport.

Base trait for activities that are logged by akka.remote.transport.TestTransport.

Source:
TestTransport.scala
final case class AssociateAttempt(localAddress: Address, remoteAddress: Address) extends Activity

Shared state among akka.remote.transport.TestTransport instances. Coordinates the transports and the means of communication between them.

Shared state among akka.remote.transport.TestTransport instances. Coordinates the transports and the means of communication between them.

Source:
TestTransport.scala
final case class DisassociateAttempt(requester: Address, remote: Address) extends Activity
final case class ListenAttempt(boundAddress: Address) extends Activity
final case class ShutdownAttempt(boundAddress: Address) extends Activity
class SwitchableLoggedBehavior[A, B](defaultBehavior: A => B, logCallback: A => Unit) extends 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 completion of the returned future.

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 completion 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.

Value parameters:
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 type parameter A:

  • Parameter type of the wrapped function. If it takes multiple parameters it must be wrapped in a tuple. type parameter B:
  • Type parameter of the future that the original function returns.
Source:
TestTransport.scala
final case class WriteAttempt(sender: Address, recipient: Address, payload: ByteString) extends Activity

Types

type Behavior[A, B] = A => Future[B]