object TestActorRef extends Serializable
- Source
- TestActorRef.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- TestActorRef
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def apply[T <: Actor](supervisor: ActorRef, name: String)(implicit t: ClassTag[T], system: ActorSystem): TestActorRef[T]
- def apply[T <: Actor](supervisor: ActorRef)(implicit t: ClassTag[T], system: ActorSystem): TestActorRef[T]
- def apply[T <: Actor](name: String)(implicit t: ClassTag[T], system: ActorSystem): TestActorRef[T]
- def apply[T <: Actor](implicit t: ClassTag[T], system: ActorSystem): TestActorRef[T]
- def apply[T <: Actor](props: Props, supervisor: ActorRef, name: String)(implicit system: ActorSystem): TestActorRef[T]
- def apply[T <: Actor](props: Props, supervisor: ActorRef)(implicit system: ActorSystem): TestActorRef[T]
- def apply[T <: Actor](props: Props, name: String)(implicit system: ActorSystem): TestActorRef[T]
- def apply[T <: Actor](props: Props)(implicit system: ActorSystem): TestActorRef[T]
- def apply[T <: Actor](factory: => T, name: String)(implicit arg0: ClassTag[T], system: ActorSystem): TestActorRef[T]
- def apply[T <: Actor](factory: => T)(implicit arg0: ClassTag[T], system: ActorSystem): TestActorRef[T]
- 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.
- 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.
- 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.
- 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.