Versions Compared

Key

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

...

Code Block
languagec#
linenumberstrue
var supervisor = BackoffSupervisor.Props(
                    Backoff.OnFailure(
                        childProps,
                        childName: "supervised-actor",
                        minBackoff: TimeSpan.FromSeconds(3),
                        maxBackoff: TimeSpan.FromSeconds(30),
                        randomFactor: 0.2)
                    );


이 섹션은 아래와 같은 실습코드를 통해 좀더 살펴보겠습니다.

  • Actor시스템 구축및 구동
  • Actor를 기능적으로 분산배치
  • Remote Actor간 메시지 처리
  • 특정 Node를 임의로 다운시키거나, 특정 Actor에 예외발생시킴