All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.allegro.tech.hermes.common.kafka.offset.PartitionOffset Maven / Gradle / Ivy

The newest version!
package pl.allegro.tech.hermes.common.kafka.offset;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import pl.allegro.tech.hermes.common.kafka.KafkaTopicName;

import java.util.Objects;

public class PartitionOffset {

    private final KafkaTopicName topic;
    private final int partition;
    private final long offset;

    @JsonCreator
    public PartitionOffset(@JsonProperty("topic") KafkaTopicName topic,
                           @JsonProperty("offset") long offset,
                           @JsonProperty("partition") int partition) {
        this.topic = topic;
        this.offset = offset;
        this.partition = partition;
    }

    public KafkaTopicName getTopic() {
        return topic;
    }

    public int getPartition() {
        return partition;
    }

    public long getOffset() {
        return offset;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null || getClass() != obj.getClass()) {
            return false;
        }
        final PartitionOffset that = (PartitionOffset) obj;

        return Objects.equals(this.topic, that.topic)
                && Objects.equals(this.partition, that.partition)
                && Objects.equals(this.offset, that.offset);
    }

    @Override
    public int hashCode() {
        return Objects.hash(topic, partition, offset);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy