Module org.elasticsearch.server
Package org.elasticsearch.cluster
Record Class RestoreInProgress.ShardRestoreStatus
java.lang.Object
java.lang.Record
org.elasticsearch.cluster.RestoreInProgress.ShardRestoreStatus
- All Implemented Interfaces:
Writeable
- Enclosing class:
RestoreInProgress
public static record RestoreInProgress.ShardRestoreStatus(String nodeId, RestoreInProgress.State state, String reason)
extends Record
implements Writeable
Represents status of a restored shard
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Constructor Summary
ConstructorsConstructorDescriptionShardRestoreStatus(String nodeId) Constructs a new shard restore status in initializing state on the given nodeShardRestoreStatus(String nodeId, RestoreInProgress.State state) Constructs a new shard restore status in with specified state on the given nodeShardRestoreStatus(String nodeId, RestoreInProgress.State state, String reason) Creates an instance of aShardRestoreStatusrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.nodeId()Returns the value of thenodeIdrecord component.readFrom(StreamInput in) reason()Returns the value of thereasonrecord component.state()Returns the value of thestaterecord component.final StringtoString()Returns a string representation of this record class.voidwriteTo(StreamOutput out) Writes restore status to stream output
-
Constructor Details
-
ShardRestoreStatus
Constructs a new shard restore status in initializing state on the given node- Parameters:
nodeId- node id
-
ShardRestoreStatus
Constructs a new shard restore status in with specified state on the given node- Parameters:
nodeId- node idstate- restore state
-
ShardRestoreStatus
Creates an instance of aShardRestoreStatusrecord class.- Parameters:
nodeId- the value for thenodeIdrecord componentstate- the value for thestaterecord componentreason- the value for thereasonrecord component
-
-
Method Details
-
readFrom
- Throws:
IOException
-
writeTo
Writes restore status to stream output- Specified by:
writeToin interfaceWriteable- Parameters:
out- stream input- Throws:
IOException
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
nodeId
Returns the value of thenodeIdrecord component.- Returns:
- the value of the
nodeIdrecord component
-
state
Returns the value of thestaterecord component.- Returns:
- the value of the
staterecord component
-
reason
Returns the value of thereasonrecord component.- Returns:
- the value of the
reasonrecord component
-