You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guide/en/messages-and-handlers.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,8 @@ This means the producer and consumer can be:
30
30
31
31
## Message: payload only
32
32
33
-
A message carries just enough data to perform the work. Defining a dedicated class for each message type makes your code
33
+
A message carries just enough data to perform the work. Usually data has some parameters but not the full context to process. Getting full context is better to be moved to the handler unless processing is done in another application that doesn't have access to data storage.
34
+
Defining a dedicated class for each message type makes your code
0 commit comments