org.elasticsearch.action.delete.index
Class IndexDeleteResponse

java.lang.Object
  extended by org.elasticsearch.action.delete.index.IndexDeleteResponse
All Implemented Interfaces:
ActionResponse, Streamable

public class IndexDeleteResponse
extends Object
implements ActionResponse, Streamable

Delete by query response executed on a specific index.


Method Summary
 int failedShards()
          The failed number of shards the delete by query was executed on.
 int getFailedShards()
          The failed number of shards the delete by query was executed on.
 String getIndex()
          The index the delete by query operation was executed against.
 int getSuccessfulShards()
          The successful number of shards the delete by query was executed on.
 int getTotalShards()
          The total number of shards the delete by query was executed on.
 String index()
          The index the delete by query operation was executed against.
 void readFrom(StreamInput in)
           
 ShardDeleteResponse[] responses()
           
 int successfulShards()
          The successful number of shards the delete by query was executed on.
 int totalShards()
          The total number of shards the delete by query was executed on.
 void writeTo(StreamOutput out)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

index

public String index()
The index the delete by query operation was executed against.


getIndex

public String getIndex()
The index the delete by query operation was executed against.


totalShards

public int totalShards()
The total number of shards the delete by query was executed on.


getTotalShards

public int getTotalShards()
The total number of shards the delete by query was executed on.


successfulShards

public int successfulShards()
The successful number of shards the delete by query was executed on.


getSuccessfulShards

public int getSuccessfulShards()
The successful number of shards the delete by query was executed on.


failedShards

public int failedShards()
The failed number of shards the delete by query was executed on.


getFailedShards

public int getFailedShards()
The failed number of shards the delete by query was executed on.


responses

public ShardDeleteResponse[] responses()

readFrom

public void readFrom(StreamInput in)
              throws IOException
Specified by:
readFrom in interface Streamable
Throws:
IOException

writeTo

public void writeTo(StreamOutput out)
             throws IOException
Specified by:
writeTo in interface Streamable
Throws:
IOException


Copyright © 2009-2012. All Rights Reserved.