public boolean equals()

in statefun-sdk-embedded/src/main/java/org/apache/flink/statefun/sdk/io/IngressIdentifier.java [76:87]


  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    IngressIdentifier<?> that = (IngressIdentifier<?>) o;
    return namespace.equals(that.namespace)
        && name.equals(that.name)
        && producedType.equals(that.producedType);
  }