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: README.md
+116
Original file line number
Diff line number
Diff line change
@@ -62,3 +62,119 @@ store.project(registeredUsers).thenApply { println("$it.name is active.") }
62
62
63
63
// prints Raimo is active
64
64
```
65
+
66
+
## Serialization DSL
67
+
68
+
### Default behaviour
69
+
By default the constructor parameters of an event are assumed to be payload, meta information is empty and type is set to the full qualified name (FQN) of the underlying Java type.
70
+
```Kotlin
71
+
data classColorChangedEvent(valtimeStamp:Long, valoldColor:Color, valnewColor:Color): DomainEvent {
data classColor(valred:Byte, valgreen:Byte, valblue:Byte, valalpha:Byte)
83
+
84
+
val now =val now =LocalDateTime.now().toInstant(ZoneOffset.UTC).toEpochMilli()
85
+
val colorChanged =ColorChangedEvent(now, Color(120,120,120,100), Color(120,120,120,50))
86
+
val result = colorChanged.serialize()
87
+
```
88
+
89
+
The type of `result` is `de.gtrefs.eventstore.ColorChangedEvent`, property `meta` is empty and property `payload` is a map with three entries:
90
+
91
+
```Kotlin
92
+
result.payload ==mapOf(
93
+
"timeStamp" to now,
94
+
"oldColor" to Color(120,120,120,100),
95
+
"newColor" to Color(120,120,120,50)
96
+
)
97
+
```
98
+
99
+
### Instance access through `it`
100
+
Within the `meta` and `payload` directives, the instance which should be translated is accessible throught `it`.
101
+
```Kotlin
102
+
val serialization = serialize<ColorChangedEvent> {
103
+
payload {
104
+
"oldColor" with it.oldColor
105
+
"newColor" with it.newColor
106
+
}
107
+
}
108
+
```
109
+
110
+
### Exclution and explicit parameters
111
+
112
+
Manipulating the translation is possible in two mutual exclusive ways. First, parameters can be excluded from the translation. Second, key-value-pairs can be defined explicitly.
Parameter `timeStamp` is removed from the translation. It is not in `meta` nor in `payload`. Property `payload` just contains `oldColor` and `newColor`.
126
+
127
+
A more imperative approach is to explicitly declare which key-value-pairs should be stored in the properties `meta` and `payload`.
128
+
```Kotlin
129
+
val serialization = serialize<ColorChangedEvent> {
130
+
meta {
131
+
"timeStamp" with it.timeStamp
132
+
}
133
+
payload {
134
+
exclude("timeStamp")
135
+
}
136
+
}
137
+
```
138
+
In this case `meta` contains `timeStamp` and `payload` contains the `oldColor` and `newColor`. The `with` directive is used to declare the new pair.
139
+
140
+
**Note**: Being explicit has a higher precedence than exclusion. This means, if there are explicitly declared key-value-pairs, these pairs are used for serialization and `without` is ignored.
141
+
```Kotlin
142
+
val serialization = serialize<ColorChangedEvent> {
143
+
payload {
144
+
without("timeStamp")
145
+
"time" with it.timeStamp
146
+
}
147
+
}
148
+
149
+
val serialized = serialization(colorChanged)
150
+
151
+
serialized.payload ==mapOf("time" to now)
152
+
```
153
+
It is a `IllegalArgumentException` to exclude and explicitly declare values with the same key and vice versa.
0 commit comments