Skip to content

Commit addfaca

Browse files
Eduardo Pintogaryrussell
Eduardo Pinto
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 bbd2b99 commit addfaca

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
@@ -979,10 +979,8 @@ http://docs.spring.io/spring-integration/reference/html/messaging-endpoints-chap
979979
The Spring for Apache Kafka project also provides some assistance by means of the `FilteringMessageListenerAdapter`
980980
class, which can wrap your `MessageListener`.
981981
This class takes an implementation of `RecordFilterStrategy` where you implement the `filter` method to signal
982-
that a message is a duplicate and should be discarded.
983-
984-
A `FilteringAcknowledgingMessageListenerAdapter` is also provided for wrapping an `AcknowledgingMessageListener`.
985-
This has an additional property `ackDiscarded` which indicates whether the adapter should acknowledge the discarded record; it is `true` by default.
982+
that a message is a duplicate and should be discarded. This has an additional property `ackDiscarded` which indicates
983+
whether the adapter should acknowledge the discarded record; it is `false` by default.
986984

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

@@ -1006,7 +1004,7 @@ When using `@KafkaListener`, set the `RetryTemplate` (and optionally `recoveryCa
10061004
The contents of the `RetryContext` passed into the `RecoveryCallback` will depend on the type of listener.
10071005
The context will always have an attribute `record` which is the record for which the failure occurred.
10081006
If your listener is acknowledging and/or consumer aware, additional attributes `acknowledgment` and/or `consumer` will be available.
1009-
For convenience, the `RetryingAcknowledgingMessageListenerAdapter` provides static constants for these keys.
1007+
For convenience, the `RetryingMessageListenerAdapter` provides static constants for these keys.
10101008
See its javadocs for more information.
10111009

10121010
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)