in src/main/java/org/opensearch/search/asynchronous/context/AsynchronousSearchContextId.java [45:50]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
AsynchronousSearchContextId other = (AsynchronousSearchContextId) o;
return id == other.id && contextId.equals(other.contextId);
}