I have setup ActorSystem to perform MapReduce on a collection of data. I have now got last Actor to collate all results. How can i channel the result back to the "service" which initated this Actor System ?
//in below call i wire up all Actors
var getActorSystem = CreateActorSystem();
//I wait for ActorSystem to complete
getActorSystem.WhenTerminated.Wait();
How do i get the result from last Actor in ActorSystem which now has the final result ?