0

I've being trying to find how to connect a Xamarin or Universal app to Akka.net. I'd like to receive notifications from actors directly to the client like Orleans does. I did not find anything like this in the getakka web page. Is something that is not covered by the framework or it's because there are no .net Core libraries for Xamarin and Universal apps?

Regards.

Fritjof Berggren
  • 3,178
  • 5
  • 35
  • 57

1 Answers1

1

There's no .Net Core support as yet.

Referring to this post by one of the primary owners of Akka.net, specifically half way down

after yesterday’s announcements I’m wondering if the .NET Core roadmap is even valid anymore. We had talked about starting work on Akka.NET for .NET Core in 2016. As of today, I’m thinking that .NET Core probably won’t be ready until much later than that.

... I can’t have that, and I’m fortunate enough to be in a position where I can and am choosing not to. I’m sticking with .NET 4.5.2 until .NET Core is solid.

Although this was dated May last year, I'm not aware of any changes on this front. I may be wrong, however.

Community
  • 1
  • 1
Patrick Allwood
  • 1,822
  • 17
  • 21
  • So in order to provide a pub/sub communication between the actor and the client I have to implement it by myself basically, using XMPP or MQTT? – Fritjof Berggren Jan 06 '17 at 11:54
  • 1
    Yes, if you need to connect something built with Xamarin to an Akka.Net system, you won't be able to use Akka.remote. How you want to approach that communication is up to you. – Patrick Allwood Jan 06 '17 at 13:44