Package org.elasticsearch.client
Class SyncedFlushResponse
- java.lang.Object
-
- org.elasticsearch.transport.TransportMessage
-
- org.elasticsearch.transport.TransportResponse
-
- org.elasticsearch.action.ActionResponse
-
- org.elasticsearch.client.SyncedFlushResponse
-
- All Implemented Interfaces:
Streamable,Writeable,ToXContent,ToXContentObject
public class SyncedFlushResponse extends ActionResponse implements 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.-
Nested classes/interfaces inherited from class org.elasticsearch.transport.TransportResponse
TransportResponse.Empty
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V extends java.lang.Object>, Writeable.Writer<V extends java.lang.Object>
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringSHARDS_FIELD-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Method Summary
Modifier and Type Method Description intfailedShards()static SyncedFlushResponsefromXContent(XContentParser parser)java.util.Map<java.lang.String,SyncedFlushResponse.IndexResult>getIndexResults()intsuccessfulShards()inttotalShards()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)-
Methods inherited from class org.elasticsearch.action.ActionResponse
readFrom, writeTo
-
Methods inherited from class org.elasticsearch.transport.TransportMessage
remoteAddress, remoteAddress
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
-
-
-
Field Detail
-
SHARDS_FIELD
public static final java.lang.String SHARDS_FIELD
- See Also:
- Constant Field Values
-
-
Method Detail
-
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
public java.util.Map<java.lang.String,SyncedFlushResponse.IndexResult> 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 XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-
fromXContent
public static SyncedFlushResponse fromXContent(XContentParser parser) throws java.io.IOException
- Throws:
java.io.IOException
-
-