public boolean equals()

in src/main/java/org/apache/rocketmq/exporter/model/metrics/TopicPutNumMetric.java [65:74]


    public boolean equals(Object obj) {
        if (!(obj instanceof TopicPutNumMetric)) {
            return false;
        }
        TopicPutNumMetric other = (TopicPutNumMetric) obj;

        return other.clusterName.equals(clusterName) &&
                other.brokerIP.equals(brokerIP) &&
                other.topicName.equals(topicName);
    }