in flink-ml-iteration/flink-ml-iteration-common/src/main/java/org/apache/flink/iteration/IterationRecord.java [133:146]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
IterationRecord<?> that = (IterationRecord<?>) o;
return epoch == that.epoch
&& type == that.type
&& Objects.equals(value, that.value)
&& Objects.equals(sender, that.sender)
&& checkpointId == that.checkpointId;
}