Package org.apache.pekko.testkit
Class TestActorRef$
java.lang.Object
org.apache.pekko.testkit.TestActorRef$
- All Implemented Interfaces:
Serializable
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final TestActorRef$Static reference to the singleton instance of this Scala object. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<T extends Actor>
TestActorRef<T>apply(String name, scala.reflect.ClassTag<T> t, ActorSystem system) <T extends Actor>
TestActorRef<T>apply(ActorRef supervisor, 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, String name, ActorSystem system) <T extends Actor>
TestActorRef<T>apply(Props props, ActorRef supervisor, String name, ActorSystem system) <T extends Actor>
TestActorRef<T>apply(Props props, ActorRef supervisor, ActorSystem system) <T extends Actor>
TestActorRef<T>apply(Props props, ActorSystem system) <T extends Actor>
TestActorRef<T>apply(scala.Function0<T> factory, 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, String name) Java API: create a TestActorRef in the given system for the given props, with the given 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, String name) Java API: create a TestActorRef in the given system for the given props, with the given supervisor and name.
-
Field Details
-
MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Constructor Details
-
TestActorRef$
public TestActorRef$()
-
-
Method Details
-
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, String name, scala.reflect.ClassTag<T> evidence$2, ActorSystem system) -
apply
-
apply
-
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, String name, ActorSystem system) -
apply
-
apply
public <T extends Actor> TestActorRef<T> apply(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, String name, scala.reflect.ClassTag<T> t, ActorSystem system) -
create
public <T extends Actor> TestActorRef<T> create(ActorSystem system, Props props, ActorRef supervisor, 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
Java API: create a TestActorRef in the given system for the given props, with the given name. -
create
Java API: create a TestActorRef in the given system for the given props, with a random name.
-