Module org.elasticsearch.server
Package org.elasticsearch.cluster
Record Class ClusterStateTaskConfig.Basic
java.lang.Object
java.lang.Record
org.elasticsearch.cluster.ClusterStateTaskConfig.Basic
- All Implemented Interfaces:
ClusterStateTaskConfig
- Enclosing interface:
- ClusterStateTaskConfig
public static record ClusterStateTaskConfig.Basic(Priority priority, TimeValue timeout)
extends Record
implements ClusterStateTaskConfig
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.cluster.ClusterStateTaskConfig
ClusterStateTaskConfig.Basic -
Constructor Summary
Constructors -
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.priority()Returns the value of thepriorityrecord component.timeout()Returns the value of thetimeoutrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Basic
Creates an instance of aBasicrecord class.- Parameters:
priority- the value for thepriorityrecord componenttimeout- the value for thetimeoutrecord 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 withObjects::equals(Object,Object). -
priority
Returns the value of thepriorityrecord component.- Specified by:
priorityin interfaceClusterStateTaskConfig- Returns:
- the value of the
priorityrecord component
-
timeout
Returns the value of thetimeoutrecord component.- Specified by:
timeoutin interfaceClusterStateTaskConfig- Returns:
- the value of the
timeoutrecord component
-