public boolean equals()

in src/main/java/org/opensearch/search/asynchronous/id/AsynchronousSearchId.java [57:66]


    public boolean equals(Object o) {
        if (this == o)
            return true;
        if (o == null || getClass() != o.getClass())
            return false;
        AsynchronousSearchId asynchronousSearchId = (AsynchronousSearchId) o;
        return asynchronousSearchId.asynchronousSearchContextId.equals(this.asynchronousSearchContextId)
                && asynchronousSearchId.node.equals(this.node)
                && asynchronousSearchId.taskId == this.taskId;
    }