python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
AKKA.NET Problems when multiple child actors tell a message to their parent
I'm trying to create a gerarchy of actors like this:
public class Actor1 : UntypedActor
{
private int _numberOfChildActive;
protected override void OnReceive(object message)
...

giancasveva
Votes: 0
Answers: 0
Integrating OpenTelemetry into my .netCore (with akka.net) framework: ActivitySource or Tracer?
I'm completely new to OTel and tracing and have been learning a bit the past few days.
I've figured out, that Otel and .net have different names for the same things. ActivitySource in .Net is Tracer i...

Oliver
Votes: 0
Answers: 0
Akka.DependencyInjection doesn't throw error when can't resolve dependencies
I'm using the DI in the following way:
_actorSystem.ActorOf(
Supervise(PropsWithDI<MessagePublisherActor>()), MessagePublisher.ActorName);
private Props PropsWithDI<T>(params object[...
Lóri Nóda
Votes: 0
Answers: 2
Akka.NET cluster intermittent dead letters
We have our cluster running locally (for now) and everything seems to be configured correctly. Our prime calculation messages are distributed over our seednodes. However, we are intermittently losing ...

Stephan Bisschop
Votes: 0
Answers: 2