object TestActorRef extends Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TestActorRef
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def apply[T <: Actor](supervisor: ActorRef, name: String)(implicit t: ClassTag[T], system: ActorSystem): TestActorRef[T]
  2. def apply[T <: Actor](supervisor: ActorRef)(implicit t: ClassTag[T], system: ActorSystem): TestActorRef[T]
  3. def apply[T <: Actor](name: String)(implicit t: ClassTag[T], system: ActorSystem): TestActorRef[T]
  4. def apply[T <: Actor](implicit t: ClassTag[T], system: ActorSystem): TestActorRef[T]
  5. def apply[T <: Actor](props: Props, supervisor: ActorRef, name: String)(implicit system: ActorSystem): TestActorRef[T]
  6. def apply[T <: Actor](props: Props, supervisor: ActorRef)(implicit system: ActorSystem): TestActorRef[T]
  7. def apply[T <: Actor](props: Props, name: String)(implicit system: ActorSystem): TestActorRef[T]
  8. def apply[T <: Actor](props: Props)(implicit system: ActorSystem): TestActorRef[T]
  9. def apply[T <: Actor](factory: ⇒ T, name: String)(implicit arg0: ClassTag[T], system: ActorSystem): TestActorRef[T]
  10. def apply[T <: Actor](factory: ⇒ T)(implicit arg0: ClassTag[T], system: ActorSystem): TestActorRef[T]
  11. 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.

  12. 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.

  13. 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.

  14. 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.