We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gary Russell opened SPR-15670 and commented
In AbstractDestinationResolvingMessagingTemplate, some methods are missing @Nullable on MessagePostProcessor.
AbstractDestinationResolvingMessagingTemplate
@Nullable
MessagePostProcessor
For example,
public <T> void convertAndSend(String destinationName, T payload, MessagePostProcessor postProcessor)
delegates to
public <T> void convertAndSend(String destinationName, T payload, @Nullable Map<String, Object> headers, @Nullable MessagePostProcessor postProcessor)
Also
public <T> T convertSendAndReceive(String destinationName, Object request, Class<T> targetClass, MessagePostProcessor postProcessor) public <T> T convertSendAndReceive(String destinationName, Object request, Map<String, Object> headers, Class<T> targetClass, MessagePostProcessor postProcessor)
delegate to methods in the superclass that have @Nullable MessagePostProcessor postProcessor.
@Nullable MessagePostProcessor postProcessor
Affects: 5.0 RC2
Issue Links:
Referenced from: commits 7e25127
The text was updated successfully, but these errors were encountered:
jhoeller
No branches or pull requests
Gary Russell opened SPR-15670 and commented
In
AbstractDestinationResolvingMessagingTemplate
, some methods are missing@Nullable
onMessagePostProcessor
.For example,
delegates to
Also
delegate to methods in the superclass that have
@Nullable MessagePostProcessor postProcessor
.Affects: 5.0 RC2
Issue Links:
Referenced from: commits 7e25127
The text was updated successfully, but these errors were encountered: