@@ -70,6 +70,7 @@ public class DefaultDestinationTopicResolver extends ExceptionClassifier
70
70
71
71
private final Clock clock ;
72
72
73
+ @ SuppressWarnings ("NullAway.Init" )
73
74
private ApplicationContext applicationContext ;
74
75
75
76
private boolean contextRefreshed ;
@@ -111,7 +112,8 @@ private Boolean isNotFatalException(Exception e) {
111
112
return getClassifier ().classify (e );
112
113
}
113
114
114
- private Throwable maybeUnwrapException (Throwable e ) {
115
+ private Throwable maybeUnwrapException (@ Nullable Throwable e ) {
116
+ Assert .state (e != null , "Exception cannot be null" );
115
117
return FRAMEWORK_EXCEPTIONS
116
118
.stream ()
117
119
.filter (frameworkException -> frameworkException .isAssignableFrom (e .getClass ()))
@@ -160,21 +162,21 @@ public DestinationTopic getDestinationTopicByName(String mainListenerId, String
160
162
161
163
@ Nullable
162
164
@ Override
163
- public DestinationTopic getDltFor (String mainListenerId , String topicName , Exception e ) {
165
+ public DestinationTopic getDltFor (String mainListenerId , String topicName , @ Nullable Exception e ) {
164
166
DestinationTopic destination = getDltOrNoOpsDestination (mainListenerId , topicName , e );
165
167
return destination .isNoOpsTopic ()
166
168
? null
167
169
: destination ;
168
170
}
169
171
170
- private DestinationTopic getDltOrNoOpsDestination (String mainListenerId , String topic , Exception e ) {
172
+ private DestinationTopic getDltOrNoOpsDestination (String mainListenerId , @ Nullable String topic , @ Nullable Exception e ) {
171
173
DestinationTopic destination = getNextDestinationTopicFor (mainListenerId , topic );
172
174
return isMatchingDltTopic (destination , e ) || destination .isNoOpsTopic () ?
173
175
destination :
174
176
getDltOrNoOpsDestination (mainListenerId , destination .getDestinationName (), e );
175
177
}
176
178
177
- private static boolean isMatchingDltTopic (DestinationTopic destination , Exception e ) {
179
+ private static boolean isMatchingDltTopic (DestinationTopic destination , @ Nullable Exception e ) {
178
180
if (!destination .isDltTopic ()) {
179
181
return false ;
180
182
}
@@ -185,7 +187,7 @@ private static boolean isMatchingDltTopic(DestinationTopic destination, Exceptio
185
187
return isDltIntendedForCurrentExc || isGenericPurposeDlt ;
186
188
}
187
189
188
- private static boolean isDirectExcOrCause (Exception e , Class <? extends Throwable > excType ) {
190
+ private static boolean isDirectExcOrCause (@ Nullable Exception e , Class <? extends Throwable > excType ) {
189
191
if (e == null ) {
190
192
return false ;
191
193
}
@@ -205,17 +207,17 @@ private static boolean isDirectExcOrCause(Exception e, Class<? extends Throwable
205
207
}
206
208
207
209
@ Override
208
- public DestinationTopic getNextDestinationTopicFor (String mainListenerId , String topic ) {
210
+ public DestinationTopic getNextDestinationTopicFor (String mainListenerId , @ Nullable String topic ) {
209
211
return getDestinationHolderFor (mainListenerId , topic ).getNextDestination ();
210
212
}
211
213
212
- private DestinationTopicHolder getDestinationHolderFor (String mainListenerId , String topic ) {
214
+ private DestinationTopicHolder getDestinationHolderFor (String mainListenerId , @ Nullable String topic ) {
213
215
return this .contextRefreshed
214
216
? doGetDestinationFor (mainListenerId , topic )
215
217
: getDestinationTopicSynchronized (mainListenerId , topic );
216
218
}
217
219
218
- private DestinationTopicHolder getDestinationTopicSynchronized (String mainListenerId , String topic ) {
220
+ private DestinationTopicHolder getDestinationTopicSynchronized (String mainListenerId , @ Nullable String topic ) {
219
221
try {
220
222
this .sourceDestinationsHolderLock .lock ();
221
223
return doGetDestinationFor (mainListenerId , topic );
@@ -225,7 +227,7 @@ private DestinationTopicHolder getDestinationTopicSynchronized(String mainListen
225
227
}
226
228
}
227
229
228
- private DestinationTopicHolder doGetDestinationFor (String mainListenerId , String topic ) {
230
+ private DestinationTopicHolder doGetDestinationFor (String mainListenerId , @ Nullable String topic ) {
229
231
Map <String , DestinationTopicHolder > map = this .sourceDestinationsHolderMap .get (mainListenerId );
230
232
Assert .notNull (map , () -> "No destination resolution information for listener " + mainListenerId );
231
233
return Objects .requireNonNull (map .get (topic ),
0 commit comments