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 aShardRestoreStatus
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.nodeId()
Returns the value of thenodeId
record component.readFrom
(StreamInput in) reason()
Returns the value of thereason
record component.state()
Returns the value of thestate
record component.final String
toString()
Returns a string representation of this record class.void
writeTo
(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 aShardRestoreStatus
record class.- Parameters:
nodeId
- the value for thenodeId
record componentstate
- the value for thestate
record componentreason
- the value for thereason
record component
-
-
Method Details
-
readFrom
- Throws:
IOException
-
writeTo
Writes restore status to stream output- Specified by:
writeTo
in 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 thenodeId
record component.- Returns:
- the value of the
nodeId
record component
-
state
Returns the value of thestate
record component.- Returns:
- the value of the
state
record component
-
reason
Returns the value of thereason
record component.- Returns:
- the value of the
reason
record component
-