Props Class
Props is a configuration object using in creating an [[Actor]]; it is
immutable, so it is thread-safe and fully shareable.
Examples on C# API:
Namespace:
Akka.ActorC#
private Props props = Props.Empty(); private Props props = Props.Create(() => new MyActor(arg1, arg2)); private Props otherProps = props.WithDispatcher("dispatcher-id"); private Props otherProps = props.WithDeploy(deployment info);
Assembly: Akka (in Akka.dll)