AKKA.Library.Demo.FirstReceivedActor.Props C# (CSharp) Method

Props() public static method

public static Props ( string hello ) : Props
hello string
return Props
        public static Props Props(string hello)
        {
            return Akka.Actor.Props.Create(() => new FirstReceivedActor(hello));
        }