Akka.Routing.RandomGroup.CreateRouter C# (CSharp) Метод

CreateRouter() публичный Метод

Creates a router that is responsible for routing messages to routees within the provided system.
public CreateRouter ( ActorSystem system ) : Router
system ActorSystem The actor system that owns this router.
Результат Router
        public override Router CreateRouter(ActorSystem system)
        {
            return new Router(new RandomLogic());
        }