You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove elastic.co related link docs in RestHighLevelClient.java and others.
/**
* Asynchronously deletes a document by id using the Delete API.
* See Delete API on elastic.co
* @param deleteRequest the request
* @param options the request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
* @param listener the listener to be notified upon request completion
* @return cancellable that may be used to cancel the request
*/
public final Cancellable deleteAsync(DeleteRequest deleteRequest, RequestOptions options, ActionListener listener) {
return performRequestAsyncAndParseEntity(deleteRequest, RequestConverters::delete, options, DeleteResponse::fromXContent, listener,
Collections.singleton(404));
}
The text was updated successfully, but these errors were encountered:
Remove elastic.co related link docs in RestHighLevelClient.java and others.
/**
* Asynchronously deletes a document by id using the Delete API.
* See Delete API on elastic.co
* @param deleteRequest the request
* @param options the request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
* @param listener the listener to be notified upon request completion
* @return cancellable that may be used to cancel the request
*/
public final Cancellable deleteAsync(DeleteRequest deleteRequest, RequestOptions options, ActionListener listener) {
return performRequestAsyncAndParseEntity(deleteRequest, RequestConverters::delete, options, DeleteResponse::fromXContent, listener,
Collections.singleton(404));
}
The text was updated successfully, but these errors were encountered: