I am struggling to add an Event Processor. Such as...
EvenGatewayActorRef = await MainActorSystem
.SetupEven()
.UseStore(memoryStore)
.AddProjection()
.AddEventProcessor()
.Start("even");
The problem is the Ask timeout. I am really struggling with debugging the cause. Any pointers would be most appreciated. Thanks
I am struggling to add an Event Processor. Such as... EvenGatewayActorRef = await MainActorSystem .SetupEven() .UseStore(memoryStore) .AddProjection()
.AddEventProcessor()
.Start("even");
The problem is the Ask timeout. I am really struggling with debugging the cause. Any pointers would be most appreciated. Thanks