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: spring-kafka-docs/src/main/antora/modules/ROOT/pages/streams.adoc
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -165,7 +165,7 @@ When constructing the serializer/deserializer programmatically for use in the pr
165
165
[source, java]
166
166
----
167
167
stream.through(
168
-
new JackonJsonSerde<>(MyKeyType.class)
168
+
new JacksonJsonSerde<>(MyKeyType.class)
169
169
.forKeys()
170
170
.noTypeInfo(),
171
171
new JacksonJsonSerde<>(MyValueType.class)
@@ -225,7 +225,7 @@ If there are multiple such beans, they will be applied according to their `Order
225
225
226
226
When the factory is stopped, the `KafkaStreams.close()` is called with 2 parameters :
227
227
228
-
* closeTimeout : how long to to wait for the threads to shutdown (defaults to `DEFAULT_CLOSE_TIMEOUT` set to 10 seconds). Can be configured using `StreamsBuilderFactoryBean.setCloseTimeout()`.
228
+
* closeTimeout : how long to wait for the threads to shutdown (defaults to `DEFAULT_CLOSE_TIMEOUT` set to 10 seconds). Can be configured using `StreamsBuilderFactoryBean.setCloseTimeout()`.
229
229
* leaveGroupOnClose : to trigger consumer leave call from the group (defaults to `false`). Can be configured using `StreamsBuilderFactoryBean.setLeaveGroupOnClose()`.
230
230
231
231
By default, when the factory bean is stopped, the `KafkaStreams.cleanUp()` method is called.
@@ -352,7 +352,7 @@ public KafkaStreamsInteractiveQueryService kafkaStreamsInteractiveQueryService(S
352
352
}
353
353
----
354
354
355
-
Assuming that a Kafka Streams application has a state store called `app-store`, then that store can be retrieved via the `KafkStreamsInteractiveQuery` API as show below.
355
+
Assuming that a Kafka Streams application has a state store called `app-store`, then that store can be retrieved via the `KafkaStreamsInteractiveQuery` API as shown below.
0 commit comments