ConsumerPosition.java 340 B

1234567891011121314
  1. package com.provectus.kafka.ui.model;
  2. import java.util.Map;
  3. import javax.annotation.Nullable;
  4. import lombok.Value;
  5. import org.apache.kafka.common.TopicPartition;
  6. @Value
  7. public class ConsumerPosition {
  8. SeekTypeDTO seekType;
  9. String topic;
  10. @Nullable
  11. Map<TopicPartition, Long> seekTo; // null if positioning should apply to all tps
  12. }