| PropsCreateByTProducer Method |
Creates an actor using a specified actor producer.
Namespace:
Akka.Actor
Assembly:
Akka (in Akka.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public static Props CreateBy<TProducer>(
params Object[] args
)
where TProducer : class, IIndirectActorProducer
static member CreateBy :
args : Object[] -> Props when 'TProducer : not struct and IIndirectActorProducer
Parameters
- args
- Type: SystemObject
The arguments needed to create the actor.
Type Parameters
- TProducer
- The type of producer used to create the actor.
Return Value
Type:
PropsThe newly created
Props.
See Also