akka-remote-actor

Getting Akka.NET to connect to a remote addresses

拈花ヽ惹草 提交于 2020-01-24 07:49:22
问题 All the demos I have found showing how to get started with remoting in Akka.NET demonstrate the simplest use case where the two actors are running on the same machine using localhost. I am trying to get an Akka.NET actor to connect to a remote machine and have run into some difficulty. The code is extremely simple: Client Code : var config = ConfigurationFactory.ParseString(@" akka { log-config-on-start = on stdout-loglevel = DEBUG loglevel = DEBUG actor { provider = ""Akka.Remote

How binary compatible is distributed akka

ぐ巨炮叔叔 提交于 2019-12-08 08:19:18
问题 While akka has documentation regarding binary compatibility for drop in jar replacement, I can't find anything regarding protocol binary compatibility. At the basic level, the actor API is a mailbox of messages. Therefore as long as the messages stay binary compatible there's every possible that messages can be sent to other systems running different (jar-incompatible) versions of akka. So given: 2 applications with a fixed message set No Typed actors (only using actor ! message and actor ?