This commit is contained in:
Ali CANLI
2022-07-12 12:48:42 +03:00
parent f4e7ee19cf
commit 2377262b64
81 changed files with 756 additions and 221 deletions

View File

@@ -5,5 +5,5 @@ import org.apache.avro.specific.SpecificRecordBase;
import java.util.List;
public interface KafkaConsumer<T extends SpecificRecordBase> {
void receive(List<T> messages , List<Long> keys , List<Integer> partitions , List<Long> offSets);
void receive(List<T> messages , List<String> keys , List<Integer> partitions , List<Long> offSets);
}