Uses of Class
org.elasticsearch.action.delete.DeleteRequestBuilder

Packages that use DeleteRequestBuilder
org.elasticsearch.action.bulk   
org.elasticsearch.action.delete Delete action. 
org.elasticsearch.client The client module allowing to easily perform actions/operations. 
org.elasticsearch.client.support   
 

Uses of DeleteRequestBuilder in org.elasticsearch.action.bulk
 

Methods in org.elasticsearch.action.bulk with parameters of type DeleteRequestBuilder
 BulkRequestBuilder BulkRequestBuilder.add(DeleteRequestBuilder request)
          Adds an DeleteRequest to the list of actions to execute.
 

Uses of DeleteRequestBuilder in org.elasticsearch.action.delete
 

Methods in org.elasticsearch.action.delete that return DeleteRequestBuilder
 DeleteRequestBuilder DeleteAction.newRequestBuilder(Client client)
           
 DeleteRequestBuilder DeleteRequestBuilder.setConsistencyLevel(WriteConsistencyLevel consistencyLevel)
          Sets the consistency level.
 DeleteRequestBuilder DeleteRequestBuilder.setId(String id)
          Sets the id of the document to delete.
 DeleteRequestBuilder DeleteRequestBuilder.setIndex(String index)
          Sets the index the delete will happen on.
 DeleteRequestBuilder DeleteRequestBuilder.setListenerThreaded(boolean threadedListener)
          Should the listener be called on a separate thread if needed.
 DeleteRequestBuilder DeleteRequestBuilder.setOperationThreaded(boolean threadedOperation)
          Controls if the operation will be executed on a separate thread when executed locally.
 DeleteRequestBuilder DeleteRequestBuilder.setParent(String parent)
          Sets the parent id of this document.
 DeleteRequestBuilder DeleteRequestBuilder.setRefresh(boolean refresh)
          Should a refresh be executed post this index operation causing the operation to be searchable.
 DeleteRequestBuilder DeleteRequestBuilder.setReplicationType(ReplicationType replicationType)
          Set the replication type for this operation.
 DeleteRequestBuilder DeleteRequestBuilder.setRouting(String routing)
          Controls the shard routing of the delete request.
 DeleteRequestBuilder DeleteRequestBuilder.setType(String type)
          Sets the type of the document to delete.
 DeleteRequestBuilder DeleteRequestBuilder.setVersion(long version)
          Sets the version, which will cause the delete operation to only be performed if a matching version exists and no changes happened on the doc since then.
 DeleteRequestBuilder DeleteRequestBuilder.setVersionType(VersionType versionType)
          Sets the type of versioning to use.
 

Uses of DeleteRequestBuilder in org.elasticsearch.client
 

Methods in org.elasticsearch.client that return DeleteRequestBuilder
 DeleteRequestBuilder Client.prepareDelete()
          Deletes a document from the index based on the index, type and id.
 DeleteRequestBuilder Client.prepareDelete(String index, String type, String id)
          Deletes a document from the index based on the index, type and id.
 

Uses of DeleteRequestBuilder in org.elasticsearch.client.support
 

Methods in org.elasticsearch.client.support that return DeleteRequestBuilder
 DeleteRequestBuilder AbstractClient.prepareDelete()
           
 DeleteRequestBuilder AbstractClient.prepareDelete(String index, String type, String id)
           
 



Copyright © 2009-2012. All Rights Reserved.