akka.testkit
Class TestActorRef$

java.lang.Object
  extended by akka.testkit.TestActorRef$
All Implemented Interfaces:
java.io.Serializable

public class TestActorRef$
extends java.lang.Object
implements scala.Serializable

See Also:
Serialized Form

Field Summary
static TestActorRef$ MODULE$
          Static reference to the singleton instance of this Scala object.
 
Constructor Summary
TestActorRef$()
           
 
Method Summary
<T extends Actor>
TestActorRef<T>
apply(scala.reflect.ClassTag<T> t, ActorSystem system)
           
<T extends Actor>
TestActorRef<T>
apply(scala.Function0<T> factory, ActorSystem system)
           
<T extends Actor>
TestActorRef<T>
apply(scala.Function0<T> factory, java.lang.String name, 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>
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, java.lang.String name)
          Java API: create a TestActorRef in the given system for the given props, with the given name.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

MODULE$

public static final TestActorRef$ MODULE$
Static reference to the singleton instance of this Scala object.

Constructor Detail

TestActorRef$

public TestActorRef$()
Method Detail

apply

public <T extends Actor> TestActorRef<T> apply(scala.Function0<T> factory,
                                               ActorSystem system)

apply

public <T extends Actor> TestActorRef<T> apply(scala.Function0<T> factory,
                                               java.lang.String name,
                                               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,
                                               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)

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.