Package akka.testkit
Class TestActorRef$
- java.lang.Object
-
- akka.testkit.TestActorRef$
-
- All Implemented Interfaces:
java.io.Serializable
public class TestActorRef$ extends java.lang.Object implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static TestActorRef$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description TestActorRef$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T extends Actor>
TestActorRef<T>apply(ActorRef supervisor, java.lang.String name, scala.reflect.ClassTag<T> t, ActorSystem system)
<T extends Actor>
TestActorRef<T>apply(ActorRef supervisor, scala.reflect.ClassTag<T> t, ActorSystem system)
<T extends Actor>
TestActorRef<T>apply(Props props, ActorRef supervisor, ActorSystem system)
<T extends Actor>
TestActorRef<T>apply(Props props, ActorRef supervisor, java.lang.String name, ActorSystem system)
<T extends Actor>
TestActorRef<T>apply(Props props, ActorSystem system)
<T extends Actor>
TestActorRef<T>apply(Props props, java.lang.String name, ActorSystem system)
<T extends Actor>
TestActorRef<T>apply(java.lang.String name, scala.reflect.ClassTag<T> t, ActorSystem system)
<T extends Actor>
TestActorRef<T>apply(scala.Function0<T> factory, java.lang.String name, scala.reflect.ClassTag<T> evidence$2, ActorSystem system)
<T extends Actor>
TestActorRef<T>apply(scala.Function0<T> factory, scala.reflect.ClassTag<T> evidence$1, ActorSystem system)
<T extends Actor>
TestActorRef<T>apply(scala.reflect.ClassTag<T> t, ActorSystem system)
<T extends Actor>
TestActorRef<T>create(ActorSystem system, Props props)
Java API: create a TestActorRef in the given system for the given props, with a random name.<T extends Actor>
TestActorRef<T>create(ActorSystem system, Props props, ActorRef supervisor)
Java API: create a TestActorRef in the given system for the given props, with the given supervisor and a random name.<T extends Actor>
TestActorRef<T>create(ActorSystem system, Props props, ActorRef supervisor, java.lang.String name)
Java API: create a TestActorRef in the given system for the given props, with the given supervisor and name.<T extends Actor>
TestActorRef<T>create(ActorSystem system, Props props, java.lang.String name)
Java API: create a TestActorRef in the given system for the given props, with the given name.
-
-
-
Field Detail
-
MODULE$
public static final TestActorRef$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
apply
public <T extends Actor> TestActorRef<T> apply(scala.Function0<T> factory, scala.reflect.ClassTag<T> evidence$1, ActorSystem system)
-
apply
public <T extends Actor> TestActorRef<T> apply(scala.Function0<T> factory, java.lang.String name, scala.reflect.ClassTag<T> evidence$2, ActorSystem system)
-
apply
public <T extends Actor> TestActorRef<T> apply(Props props, ActorSystem system)
-
apply
public <T extends Actor> TestActorRef<T> apply(Props props, java.lang.String name, ActorSystem system)
-
apply
public <T extends Actor> TestActorRef<T> apply(Props props, ActorRef supervisor, ActorSystem system)
-
apply
public <T extends Actor> TestActorRef<T> apply(Props props, ActorRef supervisor, java.lang.String name, ActorSystem system)
-
apply
public <T extends Actor> TestActorRef<T> apply(scala.reflect.ClassTag<T> t, ActorSystem system)
-
apply
public <T extends Actor> TestActorRef<T> apply(java.lang.String name, scala.reflect.ClassTag<T> t, ActorSystem system)
-
apply
public <T extends Actor> TestActorRef<T> apply(ActorRef supervisor, scala.reflect.ClassTag<T> t, ActorSystem system)
-
apply
public <T extends Actor> TestActorRef<T> apply(ActorRef supervisor, java.lang.String name, scala.reflect.ClassTag<T> t, ActorSystem system)
-
create
public <T extends Actor> TestActorRef<T> create(ActorSystem system, Props props, ActorRef supervisor, java.lang.String name)
Java API: create a TestActorRef in the given system for the given props, with the given supervisor and name.
-
create
public <T extends Actor> TestActorRef<T> create(ActorSystem system, Props props, ActorRef supervisor)
Java API: create a TestActorRef in the given system for the given props, with the given supervisor and a random name.
-
create
public <T extends Actor> TestActorRef<T> create(ActorSystem system, Props props, java.lang.String name)
Java API: create a TestActorRef in the given system for the given props, with the given name.
-
create
public <T extends Actor> TestActorRef<T> create(ActorSystem system, Props props)
Java API: create a TestActorRef in the given system for the given props, with a random name.
-
-