| PropsCreateTActor Method (Object) |
Creates an actor using the given arguments.
Namespace:
Akka.Actor
Assembly:
Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax public static Props Create<TActor>(
params Object[] args
)
where TActor : ActorBase
static member Create :
args : Object[] -> Props when 'TActor : ActorBase
Parameters
- args
- Type: SystemObject
The arguments needed to create the actor.
Type Parameters
- TActor
- The type of the actor to create.
Return Value
Type:
PropsThe newly created
Props.
See Also