Skip to content

Commit bcf5a6a

Browse files
Eduardo Pintogaryrussell
authored andcommitted
GH-840: Fix typos in documentation of Filtering Messages and Retrying Deliveries
Fixes GH-840 (#840) * remove reference to FilteringAcknowledgingMessageListenerAdapter * remove reference to RetryingAcknowledgingMessageListenerAdapter
1 parent a0342cc commit bcf5a6a

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/reference/asciidoc/kafka.adoc

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1461,10 +1461,8 @@ http://docs.spring.io/spring-integration/reference/html/messaging-endpoints-chap
14611461
The Spring for Apache Kafka project also provides some assistance by means of the `FilteringMessageListenerAdapter`
14621462
class, which can wrap your `MessageListener`.
14631463
This class takes an implementation of `RecordFilterStrategy` where you implement the `filter` method to signal
1464-
that a message is a duplicate and should be discarded.
1465-
1466-
A `FilteringAcknowledgingMessageListenerAdapter` is also provided for wrapping an `AcknowledgingMessageListener`.
1467-
This has an additional property `ackDiscarded` which indicates whether the adapter should acknowledge the discarded record; it is `true` by default.
1464+
that a message is a duplicate and should be discarded. This has an additional property `ackDiscarded` which indicates
1465+
whether the adapter should acknowledge the discarded record; it is `false` by default.
14681466

14691467
When using `@KafkaListener`, set the `RecordFilterStrategy` (and optionally `ackDiscarded`) on the container factory and the listener will be wrapped in the appropriate filtering adapter.
14701468

@@ -1489,7 +1487,7 @@ When using `@KafkaListener`, set the `RetryTemplate` (and optionally `recoveryCa
14891487
The contents of the `RetryContext` passed into the `RecoveryCallback` will depend on the type of listener.
14901488
The context will always have an attribute `record` which is the record for which the failure occurred.
14911489
If your listener is acknowledging and/or consumer aware, additional attributes `acknowledgment` and/or `consumer` will be available.
1492-
For convenience, the `RetryingAcknowledgingMessageListenerAdapter` provides static constants for these keys.
1490+
For convenience, the `RetryingMessageListenerAdapter` provides static constants for these keys.
14931491
See its javadocs for more information.
14941492

14951493
A retry adapter is not provided for any of the batch <<message-listeners, message listeners>> because the framework has no knowledge of where, in a batch, the failure occurred.

0 commit comments

Comments
 (0)