evendotnet / Even

An event sourcing framework on top of Akka.NET
134 stars 29 forks source link

Event Processor #46

Open lefig opened 6 years ago

lefig commented 6 years ago

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