o

akka.testkit

TestActors

object TestActors

A collection of common actor patterns used in tests.

Source
TestActors.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TestActors
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. class BlackholeActor extends Actor

    BlackholeActor does nothing for incoming messages, its like a blackhole.

  2. class EchoActor extends Actor

    EchoActor sends back received messages (unmodified).

  3. class ForwardActor extends Actor

    ForwardActor forwards all messages as-is to specified ActorRef.

Value Members

  1. val blackholeProps: Props
  2. val echoActorProps: Props
  3. def forwardActorProps(ref: ActorRef): Props