/** * Delete this Document asynchronously for this indexName * * @return * @throws Exception */ public F.Promise<DeleteResponse> deleteAsync(String indexName) { return IndexService.deleteAsync(getIndexPath(indexName), id); }
/** * Delete this Document asynchronously * * @return * @throws Exception */ public F.Promise<DeleteResponse> deleteAsync() { return IndexService.deleteAsync(getIndexPath(), id); }