Class ReplicationResponse.ShardInfo
java.lang.Object
org.elasticsearch.action.support.replication.ReplicationResponse.ShardInfo
- All Implemented Interfaces:
Writeable,org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentObject
- Enclosing class:
- ReplicationResponse
public static class ReplicationResponse.ShardInfo extends java.lang.Object implements Writeable, org.elasticsearch.common.xcontent.ToXContentObject
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classReplicationResponse.ShardInfo.FailureNested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
-
Constructor Summary
Constructors Constructor Description ShardInfo()ShardInfo(int total, int successful, ReplicationResponse.ShardInfo.Failure... failures)ShardInfo(StreamInput in) -
Method Summary
Modifier and Type Method Description static ReplicationResponse.ShardInfofromXContent(org.elasticsearch.common.xcontent.XContentParser parser)intgetFailed()ReplicationResponse.ShardInfo.Failure[]getFailures()intgetSuccessful()intgetTotal()RestStatusstatus()java.lang.StringtoString()org.elasticsearch.common.xcontent.XContentBuildertoXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)voidwriteTo(StreamOutput out)Write this into the StreamOutput.
-
Constructor Details
-
Method Details
-
getTotal
public int getTotal()- Returns:
- the total number of shards the write should go to (replicas and primaries). This includes relocating shards, so this number can be higher than the number of shards.
-
getSuccessful
public int getSuccessful()- Returns:
- the total number of shards the write succeeded on (replicas and primaries). This includes relocating shards, so this number can be higher than the number of shards.
-
getFailed
public int getFailed()- Returns:
- The total number of replication failures.
-
getFailures
- Returns:
- The replication failures that have been captured in the case writes have failed on replica shards.
-
status
-
writeTo
Description copied from interface:WriteableWrite this into the StreamOutput. -
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 ReplicationResponse.ShardInfo fromXContent(org.elasticsearch.common.xcontent.XContentParser parser) throws java.io.IOException- Throws:
java.io.IOException
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-