Props Constructor (Type, SupervisorStrategy, IEnumerableObject) |
Initializes a new instance of the
Props class.
Namespace: Akka.ActorAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxpublic Props(
Type type,
SupervisorStrategy supervisorStrategy,
IEnumerable<Object> args
)
Public Sub New (
type As Type,
supervisorStrategy As SupervisorStrategy,
args As IEnumerable(Of Object)
)
public:
Props(
Type^ type,
SupervisorStrategy^ supervisorStrategy,
IEnumerable<Object^>^ args
)
new :
type : Type *
supervisorStrategy : SupervisorStrategy *
args : IEnumerable<Object> -> Props
Parameters
- type
- Type: SystemType
The type. - supervisorStrategy
- Type: Akka.ActorSupervisorStrategy
The supervisor strategy. - args
- Type: System.Collections.GenericIEnumerableObject
The arguments.
See Also