What guarantees to entities provide? #1775
-
Hi, I am using v2- beta 3. What guarantees do Entities provide?
Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Here some preliminary answers. We likely need to make this a part of the official documentation as well.
|
Beta Was this translation helpful? Give feedback.
-
Thanks for the info @sebastianburckhardt ! I'll let you know if I have additional questions after I digest this a bit more :) |
Beta Was this translation helpful? Give feedback.
Here some preliminary answers. We likely need to make this a part of the official documentation as well.
messages sent from orchestrations to entities are delivered effectively-once & in order
messages sent from entities to entities are delivered effectively-once & in order
messages sent from clients to entities are delivered at-least-once & possibly out of order
The term 'effectively-once' means that the operation's effect on the entity state is "exactly-once", but the code may execute more than once if it is in…