Click or drag to resize
Akka.NETPropsCreateTActor Method (SupervisorStrategy)
Creates an actor using a specified supervisor strategy.

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public static Props Create<TActor>(
	SupervisorStrategy supervisorStrategy
)
where TActor : new(), ActorBase

Parameters

supervisorStrategy
Type: Akka.ActorSupervisorStrategy
The supervisor strategy used to manage the actor.

Type Parameters

TActor
The type of the actor to create.

Return Value

Type: Props
The newly created Props.
See Also