File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
spring-kafka-docs/src/main/antora/modules/ROOT/pages/kafka/receiving-messages Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ public class IgnoreEmptyBatchRecordFilterStrategy implements RecordFilterStrateg
52
52
public boolean ignoreEmptyBatch() {
53
53
return true;
54
54
}
55
- };
55
+ }
56
56
57
57
// NOTE: ignoreEmptyBatchRecordFilterStrategy is bean name of IgnoreEmptyBatchRecordFilterStrategy instance.
58
58
@KafkaListener(id = "filtered", topics = "topic", filter = "ignoreEmptyBatchRecordFilterStrategy")
@@ -77,7 +77,7 @@ public class NotIgnoreEmptyBatchRecordFilterStrategy implements RecordFilterStra
77
77
public boolean ignoreEmptyBatch() {
78
78
return false;
79
79
}
80
- };
80
+ }
81
81
82
82
// NOTE: notIgnoreEmptyBatchRecordFilterStrategy is bean name of NotIgnoreEmptyBatchRecordFilterStrategy instance.
83
83
@KafkaListener(id = "filtered", topics = "topic", filter = "notIgnoreEmptyBatchRecordFilterStrategy")
You can’t perform that action at this time.
0 commit comments