Package akka.actor
Class IndirectActorProducer$
- java.lang.Object
-
- akka.actor.IndirectActorProducer$
-
public class IndirectActorProducer$ extends java.lang.ObjectThis method is used byPropsto determine the type of actor which will be created. This means that an instance of thisIndirectActorProducerwill be created in order to call this method during any call toProps.actorClass(); it should be noted that such calls may performed during actor set-up before the actual actor’s instantiation, and that the instance created for callingactorClassis not necessarily reused later to produce the actor.
-
-
Field Summary
Fields Modifier and Type Field Description static IndirectActorProducer$MODULE$Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description IndirectActorProducer$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IndirectActorProducerapply(java.lang.Class<?> clazz, scala.collection.immutable.Seq<java.lang.Object> args)java.lang.Class<CreatorConsumer>CreatorConsumerClass()java.lang.Class<CreatorFunctionConsumer>CreatorFunctionConsumerClass()java.lang.Class<TypedCreatorFunctionConsumer>TypedCreatorFunctionConsumerClass()
-
-
-
Field Detail
-
MODULE$
public static final IndirectActorProducer$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
CreatorFunctionConsumerClass
public java.lang.Class<CreatorFunctionConsumer> CreatorFunctionConsumerClass()
-
CreatorConsumerClass
public java.lang.Class<CreatorConsumer> CreatorConsumerClass()
-
TypedCreatorFunctionConsumerClass
public java.lang.Class<TypedCreatorFunctionConsumer> TypedCreatorFunctionConsumerClass()
-
apply
public IndirectActorProducer apply(java.lang.Class<?> clazz, scala.collection.immutable.Seq<java.lang.Object> args)
-
-