Skip to content

Commit 0bfe9c9

Browse files
committed
[ADR] description added to considered options
added description to considered options typo
1 parent 60ff60a commit 0bfe9c9

File tree

1 file changed

+18
-10
lines changed

1 file changed

+18
-10
lines changed

adr/2022_03_18_raw_data_in_command_and_events.md

+18-10
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,38 @@
55

66
## Context and Problem Statement
77

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
1312

1413
## Decision Drivers
1514

1615
* always operate on the actual state of the object
1716
* ease to integrate with external systems
18-
* to be more consistent with CQRS pattern
17+
* be more consistent with CQRS pattern
1918

2019
## Considered Options
2120

2221
### Passing raw data or objects to commands
2322

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
2732

2833
### Passing only raw data or identifiers of the object(s) we want to change etc.
2934

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+
3038
* 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
3240
* good, because it's more consistent with CQRS pattern
3341
* bad, because we need to always make queries to DB to get objects we want to modify (but we are caching queries from
3442
DB when we are using doctrine as our ORM)

0 commit comments

Comments
 (0)