object TestTransport
- Annotations
- @deprecated
- Deprecated
(Since version Akka 2.6.0) Classic remoting is deprecated, use Artery
- Source
- TestTransport.scala
- Alphabetic
- By Inheritance
- TestTransport
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- sealed trait Activity extends AnyRef
Base trait for activities that are logged by pekko.remote.transport.TestTransport.
- final case class AssociateAttempt(localAddress: Address, remoteAddress: Address) extends Activity with Product with Serializable
- class AssociationRegistry extends AnyRef
Shared state among pekko.remote.transport.TestTransport instances.
Shared state among pekko.remote.transport.TestTransport instances. Coordinates the transports and the means of communication between them.
- type Behavior[A, B] = (A) => Future[B]
- final case class DisassociateAttempt(requester: Address, remote: Address) extends Activity with Product with Serializable
- final case class ListenAttempt(boundAddress: Address) extends Activity with Product with Serializable
- final case class ShutdownAttempt(boundAddress: Address) extends Activity with Product with Serializable
- class SwitchableLoggedBehavior[A, B] extends Behavior[A, B]
Test utility to make behavior of functions that return some Future[B] controllable from tests.
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.
- final case class WriteAttempt(sender: Address, recipient: Address, payload: ByteString) extends Activity with Product with Serializable
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])