Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagec#
title테스트코드
linenumberstrue
            var props = Props.Create<ReActor>().WithRouter(FromConfig.Instance);
            var actor = actorSystem.ActorOf(props, "workers");
            
            actor.Tell("t1");
            actor.Tell("t2");
            actor.Tell("t3");

해당 라우터에 여러번 메시지를 보냅니다.

여러개의 액터가 교대로 처리하는것을 확인할수 있습니다.

Expand
titleResult