File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
spring-kafka/src/main/java/org/springframework/kafka/config Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -212,6 +212,15 @@ public void setStreamsUncaughtExceptionHandler(StreamsUncaughtExceptionHandler s
212
212
this .streamsUncaughtExceptionHandler = streamsUncaughtExceptionHandler ; // NOSONAR (sync)
213
213
}
214
214
215
+ /**
216
+ * Retrieves the current {@link StreamsUncaughtExceptionHandler} set on this factory bean.
217
+ * @return {@link StreamsUncaughtExceptionHandler}
218
+ * @since 2.8.4
219
+ */
220
+ public StreamsUncaughtExceptionHandler getStreamsUncaughtExceptionHandler () {
221
+ return this .streamsUncaughtExceptionHandler ;
222
+ }
223
+
215
224
public void setStateRestoreListener (StateRestoreListener stateRestoreListener ) {
216
225
this .stateRestoreListener = stateRestoreListener ; // NOSONAR (sync)
217
226
}
You can’t perform that action at this time.
0 commit comments