3

使用 akka 1.3.1,我以前能够做这样的事情:

Actor.remote.start(config.server.host, config.server.port) Actor.remote.register("service", Actor.actorOf[ServiceHandler].start())

这将使用提供的主机/端口配置启动远程服务器,然后允许我稍后在运行时注册远程服务。有没有办法在 Akka 2.0 中获得这种行为,而不必在 akka conf 文件中预定义所有内容?

谢谢!

4

1 回答 1

2

您的演员可以通过 2.0 中的远程处理中的路径自动访问。在此处阅读有关远程处理的文档:http: //doc.akka.io/docs/akka/2.0.1/scala/remoting.html

于 2012-04-26T21:00:52.687 回答