Thinking in Actors – Challenging your software modelling to be simpler
jeremycarterau.substack.com
Thinking in Actors – Challenging your software modelling to be simpler
1–10 of 48 posts
Re: Thinking in Actors – Challenging your software modelling to be simpler
#2Re: Thinking in Actors – Challenging your software modelling to be simpler
#3Re: Thinking in Actors – Challenging your software modelling to be simpler
#4Does anyone care to share an example of the OrderService that is not anemic?
What you should end up with are plain OOPy objects that mirror the real world. They're not skewed or constrained by their database model. They shouldn't have any dependencies on your infrastructure layer. The object should encapsulate state, behaviour, validity and consistency.
An example (which is probably overkill) would be https://learn.microsoft.com/en-us/dotnet/architecture/micros...
The next post is about modelling an actor and it might provide more insight for you.
Re: Thinking in Actors – Challenging your software modelling to be simpler
#5Re: Thinking in Actors – Challenging your software modelling to be simpler
#6Does anyone care to share an example of the OrderService that is not anemic?
It's tricky to provide a really good example right now. I notice in the .NET world there are like these DDD "starter packs", and my god, they're just layers of maintainability hell. If you look at older OOP/DDD books you'll notice that the domain object has real world methods on it, just like as if it were from a UML diagram. What you should end up with are plain OOPy objects that mirror the real world. They're not s…
Re: Thinking in Actors – Challenging your software modelling to be simpler
#7The article seems to be smashing together two (seemingly) unrelated topics and doesn't offer much in the way of a solution. What alternative design does the author propose? Is it possible to solve the problem with traditional object-oriented design techniques? It's not clear that the issues presented require or substantially benefit from the actor model without seeing a best in-class OO example.
Re: Thinking in Actors – Challenging your software modelling to be simpler
#8Earlier quoted context omitted.
It's tricky to provide a really good example right now. I notice in the .NET world there are like these DDD "starter packs", and my god, they're just layers of maintainability hell. If you look at older OOP/DDD books you'll notice that the domain object has real world methods on it, just like as if it were from a UML diagram. What you should end up with are plain OOPy objects that mirror the real world. They're not s…
It's not clear from the article whether actors offer significant benefits (or disadvantages) for data modeling versus the traditional OO paradigm. The article reads more like an introduction that describes the problem and teases a solution rather a complete article that offers a solution and evaluation of it.
Re: Thinking in Actors – Challenging your software modelling to be simpler
#9Curious to see what the follow-up parts will post. I am interested in actor model programming and want to see different ways of understanding and using them.
Re: Thinking in Actors – Challenging your software modelling to be simpler
#10Earlier quoted context omitted.
It's not clear from the article whether actors offer significant benefits (or disadvantages) for data modeling versus the traditional OO paradigm. The article reads more like an introduction that describes the problem and teases a solution rather a complete article that offers a solution and evaluation of it.
That's fair feedback. I wanted to post it in 3 parts, but I see now I probably should have just made one large post.