File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
spring-kafka/src/main/java/org/springframework/kafka/retrytopic Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 3535import org .springframework .kafka .listener .MessageListener ;
3636import org .springframework .kafka .listener .adapter .KafkaBackoffAwareMessageListenerAdapter ;
3737import org .springframework .kafka .support .TopicPartitionOffset ;
38+ import org .springframework .lang .Nullable ;
3839import org .springframework .util .Assert ;
3940import org .springframework .util .backoff .BackOff ;
4041
5960 */
6061public class ListenerContainerFactoryConfigurer {
6162
62- private BackOff providedBlockingBackOff = null ;
63+ @ Nullable
64+ private BackOff providedBlockingBackOff ;
6365
64- private Class <? extends Exception >[] blockingExceptionTypes = null ;
66+ @ Nullable
67+ private Class <? extends Exception >[] blockingExceptionTypes ;
6568
6669 private boolean retainStandardFatal ;
6770
Original file line number Diff line number Diff line change 11/**
22 * Package for retryable topic handling.
33 */
4+ @ org .springframework .lang .NonNullApi
5+ @ org .springframework .lang .NonNullFields
46package org .springframework .kafka .retrytopic ;
You can’t perform that action at this time.
0 commit comments