TestActorRef

org.apache.pekko.testkit.TestActorRef
See theTestActorRef companion class
object TestActorRef

Attributes

Companion
class
Source
TestActorRef.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Value members

Concrete methods

def apply[T <: Actor : ClassTag](factory: => T)(implicit evidence$1: ClassTag[T], system: ActorSystem): TestActorRef[T]

Attributes

Source
TestActorRef.scala
def apply[T <: Actor : ClassTag](factory: => T, name: String)(implicit evidence$2: ClassTag[T], system: ActorSystem): TestActorRef[T]

Attributes

Source
TestActorRef.scala
def apply[T <: Actor](props: Props)(implicit system: ActorSystem): TestActorRef[T]

Attributes

Source
TestActorRef.scala
def apply[T <: Actor](props: Props, name: String)(implicit system: ActorSystem): TestActorRef[T]

Attributes

Source
TestActorRef.scala
def apply[T <: Actor](props: Props, supervisor: ActorRef)(implicit system: ActorSystem): TestActorRef[T]

Attributes

Source
TestActorRef.scala
def apply[T <: Actor](props: Props, supervisor: ActorRef, name: String)(implicit system: ActorSystem): TestActorRef[T]

Attributes

Source
TestActorRef.scala
def apply[T <: Actor](implicit t: ClassTag[T], system: ActorSystem): TestActorRef[T]

Attributes

Source
TestActorRef.scala
def apply[T <: Actor](name: String)(implicit t: ClassTag[T], system: ActorSystem): TestActorRef[T]

Attributes

Source
TestActorRef.scala
def apply[T <: Actor](supervisor: ActorRef)(implicit t: ClassTag[T], system: ActorSystem): TestActorRef[T]

Attributes

Source
TestActorRef.scala
def apply[T <: Actor](supervisor: ActorRef, name: String)(implicit t: ClassTag[T], system: ActorSystem): TestActorRef[T]

Attributes

Source
TestActorRef.scala
def create[T <: Actor](system: ActorSystem, props: Props, supervisor: ActorRef, name: String): TestActorRef[T]

Java API: create a TestActorRef in the given system for the given props, with the given supervisor and name.

Java API: create a TestActorRef in the given system for the given props, with the given supervisor and name.

Attributes

Source
TestActorRef.scala
def create[T <: Actor](system: ActorSystem, props: Props, supervisor: ActorRef): TestActorRef[T]

Java API: create a TestActorRef in the given system for the given props, with the given supervisor and a random name.

Java API: create a TestActorRef in the given system for the given props, with the given supervisor and a random name.

Attributes

Source
TestActorRef.scala
def create[T <: Actor](system: ActorSystem, props: Props, name: String): TestActorRef[T]

Java API: create a TestActorRef in the given system for the given props, with the given name.

Java API: create a TestActorRef in the given system for the given props, with the given name.

Attributes

Source
TestActorRef.scala
def create[T <: Actor](system: ActorSystem, props: Props): TestActorRef[T]

Java API: create a TestActorRef in the given system for the given props, with a random name.

Java API: create a TestActorRef in the given system for the given props, with a random name.

Attributes

Source
TestActorRef.scala