Package org.elasticsearch.client
Class SyncedFlushResponse
java.lang.Object
org.elasticsearch.client.SyncedFlushResponse
- All Implemented Interfaces:
org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentObject
public class SyncedFlushResponse
extends java.lang.Object
implements org.elasticsearch.common.xcontent.ToXContentObject
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSyncedFlushResponse.IndexResultDescription for the flush/synced results for a particular index.static classSyncedFlushResponse.ShardCountsEncapsulates the number of total successful and failed shard copiesstatic classSyncedFlushResponse.ShardFailureDescription of a failed shard copy for an index. -
Field Summary
Fields Modifier and Type Field Description static java.lang.StringSHARDS_FIELD -
Method Summary
Modifier and Type Method Description intfailedShards()static SyncedFlushResponsefromXContent(org.elasticsearch.common.xcontent.XContentParser parser)java.util.Map<java.lang.String,SyncedFlushResponse.IndexResult>getIndexResults()intsuccessfulShards()inttotalShards()org.elasticsearch.common.xcontent.XContentBuildertoXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)
-
Field Details
-
SHARDS_FIELD
public static final java.lang.String SHARDS_FIELD- See Also:
- Constant Field Values
-
-
Method Details
-
totalShards
public int totalShards()- Returns:
- The total number of shard copies that were processed across all indexes
-
successfulShards
public int successfulShards()- Returns:
- The number of successful shard copies that were processed across all indexes
-
failedShards
public int failedShards()- Returns:
- The number of failed shard copies that were processed across all indexes
-
getIndexResults
- Returns:
- A map of results for each index where the keys of the map are the index names
and the values are the results encapsulated in
SyncedFlushResponse.IndexResult.
-
toXContent
public org.elasticsearch.common.xcontent.XContentBuilder toXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException- Specified by:
toXContentin interfaceorg.elasticsearch.common.xcontent.ToXContent- Throws:
java.io.IOException
-
fromXContent
public static SyncedFlushResponse fromXContent(org.elasticsearch.common.xcontent.XContentParser parser) throws java.io.IOException- Throws:
java.io.IOException
-