Package akka.actor
Class CreatorFunctionConsumer
- java.lang.Object
-
- akka.actor.CreatorFunctionConsumer
-
- All Implemented Interfaces:
IndirectActorProducer
public class CreatorFunctionConsumer extends java.lang.Object implements IndirectActorProducer
INTERNAL API
-
-
Constructor Summary
Constructors Constructor Description CreatorFunctionConsumer(scala.Function0<Actor> creator)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class<Actor>actorClass()This method is used byPropsto determine the type of actor which will be created.Actorproduce()
-
-
-
Constructor Detail
-
CreatorFunctionConsumer
public CreatorFunctionConsumer(scala.Function0<Actor> creator)
-
-
Method Detail
-
actorClass
public java.lang.Class<Actor> actorClass()
Description copied from interface:IndirectActorProducerThis 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.- Specified by:
actorClassin interfaceIndirectActorProducer- Returns:
- (undocumented)
-
produce
public Actor produce()
- Specified by:
producein interfaceIndirectActorProducer
-
-