Hi! I consider using Akka.NET for triggering data replication.
One system changed data and triggers other systems to refresh it from central storage. Later on any system that changes data will be allowed to trigger other systems.
I am seeing a really weird TestKit behavior that I'll try to get a shareable code example for but I'll describe quickly here...Basically my actor is using Serilog directly (not Akka.Logging.Serilog) and if I create the actor using ActorOf in my NUnit test case I get no logging output in Nunit but if I use ActorOfAsTestActorRef to create the actor then I do get the logging output in Nunit
We are working with sending a cached object back from an actor to a caller. Unfortunately the cache may not have been created yet but we can't Sender.Tell() a Null. Anyone have a creative solution?
The actor is created using Generics so we don't know the data type to create an empty object to return either.