akka.net

Akka.Net VS MS Orleans Comparison [closed]

家住魔仙堡 提交于 2019-12-02 21:40:40
Closed . This question needs to be more focused. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it focuses on one problem only by editing this post . I've started implementing several LOB application with CQRS/ES and for this evaluating: several EMS: NServiceBus, MassTransit, RhinoMessageBus Akka.net + DDDD MS Orleans + DDDD There are lot of comparisons of different EMSs but no evaluations of Actor Frameworks. So, could you please compare Akka vs Orleans, namely: features presents conciseness of syntax (Akka is line-by-line porting

akka.net is there a a way to get or create actor

主宰稳场 提交于 2019-12-01 19:15:26
For my actor hierarchy, I do not know all the actors I need until I process the data through a few actors, so I'm looking for a way to either return an existing ActorRef or create a new action. This is what I would like the code below to either create an actor if one does not exist at "my-id-1" or return the one that already exists. Context.ActorOf(MyActor.Props(message), "my-id-1"); The above code will (as documented) throw a InvalidActorNameException if the actor already exists. How can I accomplish this in Akka.net? You can check if current actor has a child with provided name by using

akka.net is there a a way to get or create actor

穿精又带淫゛_ 提交于 2019-12-01 18:43:17
问题 For my actor hierarchy, I do not know all the actors I need until I process the data through a few actors, so I'm looking for a way to either return an existing ActorRef or create a new action. This is what I would like the code below to either create an actor if one does not exist at "my-id-1" or return the one that already exists. Context.ActorOf(MyActor.Props(message), "my-id-1"); The above code will (as documented) throw a InvalidActorNameException if the actor already exists. How can I