akka.net Questions

2

Solved

I have one actor which is executing a forever loop that is waiting for the availability of data to operate on. The doc says the Actor runs on a very lightweight thread, so I'm not sure whether i c...
Gunner asked 19/8, 2015 at 9:14

2

Solved

I may be doing something incorrect, but it is not apparent. I have the following code: namespace test { class Program { static void Main(string[] args) { using (var system = ActorSystem.Cr...
Customhouse asked 1/6, 2015 at 21:2

2

Hi I'm in the early stage of choosing an actor framework for a project I'm about to start. As far as I know Orleans was meant to relief the developer of as much pain as possible, at cost of some pe...
Teletype asked 4/1, 2017 at 15:41

4

Solved

I'm working on migrating most of my project to .Net Standard 2.0. Last part of the project in .net standard 4.7.1 is a WCF front end. This executable communicate with a .net core application throu...
Dulcle asked 5/5, 2018 at 14:34

2

Solved

Background I have a Akka.NET cluster containing a Lighthouse seed node and two other nodes running actor systems. When I attempt to do a graceful shutdown on one of my cluster nodes I want to see t...
Resor asked 11/7, 2016 at 14:26

1

Solved

I have the following code in my application which creates an instance of an Akka.NET actor in my cluster as such: _actorSystem = ActorSystem.Create("mycluster"); _actoraActor = this._actorSystem.A...
Ouellette asked 25/6, 2018 at 16:43

1

Solved

I’m working in F# with Akkling so I can use the strongly typed actors on Akka.net but I’ve hit a design limitation within F# and I wondered if there is an elegant way around this. Take my root mes...
Mcgaw asked 20/6, 2018 at 9:17

1

i have a background in enterprise distributed systems using Messaging technologies such as RabbitMQ and others, though i am relatively new to Actor Model. with that said, i am wondering if it is a...
Bureaucrat asked 24/4, 2018 at 16:48

1

Solved

Referring to Akka.Net documentation, using PipeTo() is preferred when dealing with asynchronous jobs. When dealing with a function that returns Task<T>, I can handle the failure event, no pr...
Funches asked 15/2, 2018 at 8:41

1

Solved

In the following code, I am using the syntactic sugar provided by .net, the async/await approach, but read that this is not a good way of handling asynchronous operations within akka, and I should ...
Dismiss asked 8/12, 2017 at 7:10

2

Solved

I am using Akka.NET to implement an actor system in which some actors are created on demand and are deleted after a configurable idle period (I use Akka's "ReceiveTimeout" mechanism for this). Each...
Pneumogastric asked 22/12, 2014 at 13:36

1

Solved

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...
Neuburger asked 9/11, 2017 at 16:12

1

We are creating a new system using Akka.NET and have a basic cluster setup with sharding and persistence. We've used the official documentation as well as some Petabridge blog posts to get shardin...
Cryometer asked 20/4, 2017 at 13:39

1

We created an Akka Cluster infrastructure for Sms, Email and Push notifications. 3 different kind of nodes are exist in the system, which are client, sender and lighthouse. Client role is being use...
Marriageable asked 30/3, 2017 at 20:51

4

Solved

I am trying out Akka.net. So far I just created a simple HelloWorld-style application. Usually I am using TDD approach in my development but with Akka.net I don't know where to start with my unit t...
Mitzimitzie asked 2/9, 2014 at 14:39

2

I'm using AKKA.NET in my current .NET project. My question is this: How are experienced AKKA-developers implementing the replay-message-on-failure pattern using the latest AKKA libraries for eith...
Kirchhoff asked 1/9, 2016 at 13:3

1

Solved

For my actor hierarchy, I do not know all the actors I need until I process the data through a few actors, so I'm looking for a way to either return an existing ActorRef or create a new action. Thi...
Charlean asked 6/10, 2016 at 20:27

0

Can somebody show an example how to use Akka.Net Testkit with F# API? Both Akka.Net and F# are quite new to me so I don't know if it is even feasible or reasonable to write unit tests this way (F# ...
Depressor asked 20/9, 2016 at 7:11

0

I am learning about Akka.net and have heard about service fabric from Azure. As far as I know, they both are used for building microservices. Apart from the difference in the scaling model,...
Chromatin asked 10/9, 2016 at 6:29

1

Solved

Having something like a string parameter in a constructor makes dependency injection very messy. Think: public class CurrencyActor { public CurrencyActor(string currency, IRepository repository) ...
Cunaxa asked 10/7, 2016 at 18:21

1

Solved

Using Akka.net with remoting. This article has the following to say about using ActorSelection: The other time when I tend to use an ActorSelection is when I am initially communicating with a r...
Talkative asked 26/2, 2016 at 19:37

1

Solved

In an clustered environment I have a seed node and node1 and node2. From node1 I want to send a message to an Actor which has been created on node2. The local path to this node on node2 is akka:My...
Mushroom asked 25/2, 2016 at 17:24

1

Solved

Can Akka.NET and Original Akka communicate Using Remoting? In other words can Akka be used to connect a JVM and CLR in a system?
Semiology asked 16/1, 2016 at 7:45

1

Solved

I am trying to make Akka.NET log all messages received by actors but can't get this to work. Here's my configuration (I am using projects from Akka.NET bootcamp): akka { stdout-loglevel = DEBU...
Munger asked 12/1, 2016 at 8:13

2

Solved

Is it possible to wait (without blocking) on an Async<'t> within an Akka.Net actor computation? I want to achieve something similar to the following. actor { let! msg = mailbox.Receive() matc...
Levy asked 9/8, 2014 at 15:14

© 2022 - 2024 — McMap. All rights reserved.