Module org.elasticsearch.server
Package org.elasticsearch.action.support
Record Class ActiveShardCount.EnoughShards
java.lang.Object
java.lang.Record
org.elasticsearch.action.support.ActiveShardCount.EnoughShards
- Record Components:
enoughShards- the decision of whether the active shard count is enough to meet the required shard count of this instancecurrentActiveShards- the currently active shards considered for making the decision
- Enclosing class:
ActiveShardCount
public static record ActiveShardCount.EnoughShards(boolean enoughShards, int currentActiveShards)
extends Record
Record that captures the decision of
ActiveShardCount.enoughShardsActive(IndexShardRoutingTable).-
Constructor Summary
ConstructorsConstructorDescriptionEnoughShards(boolean enoughShards, int currentActiveShards) Creates an instance of aEnoughShardsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionintReturns the value of thecurrentActiveShardsrecord component.booleanReturns the value of theenoughShardsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
EnoughShards
public EnoughShards(boolean enoughShards, int currentActiveShards) Creates an instance of aEnoughShardsrecord class.- Parameters:
enoughShards- the value for theenoughShardsrecord componentcurrentActiveShards- the value for thecurrentActiveShardsrecord component
-
-
Method Details
-
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 with '=='. -
enoughShards
public boolean enoughShards()Returns the value of theenoughShardsrecord component.- Returns:
- the value of the
enoughShardsrecord component
-
currentActiveShards
public int currentActiveShards()Returns the value of thecurrentActiveShardsrecord component.- Returns:
- the value of the
currentActiveShardsrecord component
-