Versions Compared

Key

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

Remote 는, 기존 작성했던 로컬에서 작동했던 액터를 그대로 재활용하여 , 액터설계의 코드변경없이

원격지에서 사용이 가능합니다. 어떻게 이게 이러한게 가능한지 실습을 해보겠습니다.



Panel
title설정
akka {
    actor {
        provider = "Akka.Remote.RemoteActorRefProvider, Akka.Remote"
    }

    remote {

helios.tcp {
port = 8001 #bound to a specific port
hostname = 127.0.0.1
}

    }
}

...