-
Notifications
You must be signed in to change notification settings - Fork 4
Home
adospace edited this page Jul 8, 2019
·
4 revisions
This is a .NET library that implements a basic actor model to handle concurrent access to services
ServiceActor goal is to simplify multithreading/concurrent access to services using an Actor-like model without requiring the project to be completely rewritten or designed from the start using an Actor model paradigm.
ServiceActor doesn't aim to be a full Actor model like Akka.Net or Orleans: actually, it can be even compared to those frameworks! So if you're looking for a pure Actor model infrastructure I would point you to one of those frameworks.
- Makes concurrent access to services lock-free and straightforward
- Should not require a complete rewrite of your service code
- Should be "pluggable": i.e. should be possible to use ServiceActor only for a portion of your system
- Should be async/await friendly
- Should be easily adopted in projects that deliver services using a DI frameworks
- Should be possible to gracefully handle exceptions in services managing custom recover policies (not yet realized)
- Services should be accessible in the same process memory (not like pure Actors that are instead location unaware)