Fix Checkstyle violation in the Javadoc

This commit is contained in:
Artem Bilan
2025-03-06 15:59:55 -05:00
parent 0e011878f5
commit 9c0c4e2853

View File

@@ -109,11 +109,11 @@ public interface AsyncAmqpTemplate {
* The request message must have a {@code replyTo} property.
* The request {@code messageId} property is used for correlation.
* The callback might not produce a reply with the meaning nothing to answer.
* @param <R> the request body type.
* @param <S> the response body type
* @param queueName the queue to consume request.
* @param callback an application callback to handle request and produce reply.
* @return the completion status: true if no errors and reply has been produced.
* @param <R> the request body type.
* @param <S> the response body type
*/
default <R, S> CompletableFuture<Boolean> receiveAndReply(String queueName, ReceiveAndReplyCallback<R, S> callback) {
throw new UnsupportedOperationException();