public boolean equals()

in client/src/main/java/org/apache/rocketmq/schema/registry/client/CachedSchemaRegistryClient.java [350:362]


        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
            if (o == null || getClass() != o.getClass()) {
                return false;
            }
            SubjectAndId that = (SubjectAndId) o;
            return Objects.equals(subject, that.subject)
                && Objects.equals(tenant, that.tenant)
                && Objects.equals(cluster, that.cluster)
                && recordId == that.recordId;
        }