|
5 | 5 |
|
6 | 6 | ## Context and Problem Statement
|
7 | 7 |
|
8 |
| -While defining new commands or events we may define them with entities or any objects. Objects passed to commands or |
9 |
| -events may desynchronize with the main object which can be causing problems with handlers that may operate on wrong data. |
10 |
| -Passing objects to commands can ease us to implement new features and make it faster but this solution gives us plenty of |
11 |
| -problems with integrations with external systems or eg. operating with the actual state of an object especially when |
12 |
| -we are doing it asynchronously. |
| 8 | +While working with commands and handlers, we are always working with objects; therefore, these objects need to be |
| 9 | +present in handlers. We may either fetch them from the repository based on identifiers or pass them as a part of |
| 10 | +commands. The selected solution needs to take into account that our commands may be dispatched to external systems or |
| 11 | +processed asynchronously |
13 | 12 |
|
14 | 13 | ## Decision Drivers
|
15 | 14 |
|
16 | 15 | * always operate on the actual state of the object
|
17 | 16 | * ease to integrate with external systems
|
18 |
| -* to be more consistent with CQRS pattern |
| 17 | +* be more consistent with CQRS pattern |
19 | 18 |
|
20 | 19 | ## Considered Options
|
21 | 20 |
|
22 | 21 | ### Passing raw data or objects to commands
|
23 | 22 |
|
24 |
| -* good, because it can be ease for us to implement new features |
25 |
| -* bad, because it can be problematicaly when we are using async communication |
26 |
| -* bad, because it can be hard to integrate commands written like that with extenal systems |
| 23 | +Objects passed to commands or events may desynchronize with the main object which can be causing problems with handlers |
| 24 | +that may operate on wrong data. Passing objects to commands can ease us to implement new features and make it faster but |
| 25 | +this solution gives us plenty of problems with integrations with external systems or eg. operating with the actual state |
| 26 | +of an object especially when we are doing it asynchronously. |
| 27 | + |
| 28 | +* good, because it can be easier for us to implement new features |
| 29 | +* bad, because the command handler can work on not synchronized object |
| 30 | +* bad, because it can be problematic when we are using async communication |
| 31 | +* bad, because it can be hard to integrate commands written like that with external systems |
27 | 32 |
|
28 | 33 | ### Passing only raw data or identifiers of the object(s) we want to change etc.
|
29 | 34 |
|
| 35 | +Based on the identifier of the object(s) we can easily fetch them from DB which resolves the problem with desynchronizing |
| 36 | +because we always make queries to DB for the newest state of an object. |
| 37 | + |
30 | 38 | * good, because there is no problem with desynchronizing data while async communication
|
31 |
| -* good, because we can easy integrate with extenal systems |
| 39 | +* good, because we can easily integrate with external systems |
32 | 40 | * good, because it's more consistent with CQRS pattern
|
33 | 41 | * bad, because we need to always make queries to DB to get objects we want to modify (but we are caching queries from
|
34 | 42 | DB when we are using doctrine as our ORM)
|
|
0 commit comments