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());
        }