PropsCreateByTProducer Method |
Creates an actor by an actor producer
Namespace: Akka.ActorAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxpublic static Props CreateBy<TProducer>(
params Object[] args
)
where TProducer : class, IndirectActorProducer
Public Shared Function CreateBy(Of TProducer As {Class, IndirectActorProducer}) (
ParamArray args As Object()
) As Props
public:
generic<typename TProducer>
where TProducer : ref class, IndirectActorProducer
static Props^ CreateBy(
... array<Object^>^ args
)
static member CreateBy :
args : Object[] -> Props when 'TProducer : not struct and IndirectActorProducer
Parameters
- args
- Type: SystemObject
The arguments
Type Parameters
- TProducer
- The type of the actor producer
Return Value
Type:
PropsProps
See Also