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