Class RecoveryResponse
- java.lang.Object
-
- org.elasticsearch.transport.TransportMessage
-
- org.elasticsearch.transport.TransportResponse
-
- org.elasticsearch.action.ActionResponse
-
- org.elasticsearch.action.support.broadcast.BroadcastResponse
-
- org.elasticsearch.action.admin.indices.recovery.RecoveryResponse
-
- All Implemented Interfaces:
Streamable
,Writeable
,ToXContent
,ToXContentObject
public class RecoveryResponse extends BroadcastResponse
Information regarding the recovery state of indices and their associated shards.
-
-
Nested Class Summary
-
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>, Writeable.Writer<V>
-
-
Field Summary
-
Fields inherited from class org.elasticsearch.action.support.broadcast.BroadcastResponse
EMPTY
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description RecoveryResponse()
RecoveryResponse(int totalShards, int successfulShards, int failedShards, java.util.Map<java.lang.String,java.util.List<RecoveryState>> shardRecoveryStates, java.util.List<DefaultShardOperationFailedException> shardFailures)
Constructs recovery information for a collection of indices and associated shards.
-
Method Summary
Modifier and Type Method Description boolean
hasRecoveries()
void
readFrom(StreamInput in)
Set this object's fields from a StreamInput.java.util.Map<java.lang.String,java.util.List<RecoveryState>>
shardRecoveryStates()
java.lang.String
toString()
XContentBuilder
toXContent(XContentBuilder builder, ToXContent.Params params)
void
writeTo(StreamOutput out)
Write this object's fields to a StreamOutput.-
Methods inherited from class org.elasticsearch.action.support.broadcast.BroadcastResponse
addCustomXContentFields, declareBroadcastFields, getFailedShards, getShardFailures, getStatus, getSuccessfulShards, getTotalShards
-
Methods inherited from class org.elasticsearch.transport.TransportMessage
remoteAddress, remoteAddress
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
-
-
-
Constructor Detail
-
RecoveryResponse
public RecoveryResponse()
-
RecoveryResponse
public RecoveryResponse(int totalShards, int successfulShards, int failedShards, java.util.Map<java.lang.String,java.util.List<RecoveryState>> shardRecoveryStates, java.util.List<DefaultShardOperationFailedException> shardFailures)
Constructs recovery information for a collection of indices and associated shards. Keeps track of how many total shards were seen, and out of those how many were successfully processed and how many failed.- Parameters:
totalShards
- Total count of shards seensuccessfulShards
- Count of shards successfully processedfailedShards
- Count of shards which failed to processshardRecoveryStates
- Map of indices to shard recovery informationshardFailures
- List of failures processing shards
-
-
Method Detail
-
hasRecoveries
public boolean hasRecoveries()
-
shardRecoveryStates
public java.util.Map<java.lang.String,java.util.List<RecoveryState>> shardRecoveryStates()
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContent
in interfaceToXContent
- Overrides:
toXContent
in classBroadcastResponse
- Throws:
java.io.IOException
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:Streamable
Write this object's fields to a StreamOutput.- Specified by:
writeTo
in interfaceStreamable
- Specified by:
writeTo
in interfaceWriteable
- Overrides:
writeTo
in classBroadcastResponse
- Throws:
java.io.IOException
-
readFrom
public void readFrom(StreamInput in) throws java.io.IOException
Description copied from interface:Streamable
Set this object's fields from a StreamInput.- Specified by:
readFrom
in interfaceStreamable
- Overrides:
readFrom
in classBroadcastResponse
- Throws:
java.io.IOException
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-