Using akka 1.3.1, I was able to do something like this earlier:
Actor.remote.start(config.server.host, config.server.port)
Actor.remote.register("service", Actor.actorOf[ServiceHandler].start())
To start the remote server using the provided host / port configuration, and then allow me to register the remote services at runtime later. Is there any way to get this behavior in Akka 2.0 without having to predefine everything in akka conf files?
Thank!
Bryan source
share