Record Class JoinTaskExecutor.Task
java.lang.Object
java.lang.Record
org.elasticsearch.cluster.coordination.JoinTaskExecutor.Task
- All Implemented Interfaces:
ClusterStateTaskListener
- Enclosing class:
- JoinTaskExecutor
public static record JoinTaskExecutor.Task(DiscoveryNode node, String reason, ActionListener<Void> listener)
extends Record
implements ClusterStateTaskListener
-
Constructor Summary
ConstructorsConstructorDescriptionTask
(DiscoveryNode node, String reason, ActionListener<Void> listener) Creates an instance of aTask
record class. -
Method Summary
Modifier and TypeMethodDescriptionvoid
clusterStateProcessed
(ClusterState oldState, ClusterState newState) Called when the result of theClusterStateTaskExecutor.execute(ClusterState, List)
have been processed properly by all listeners.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
boolean
listener()
Returns the value of thelistener
record component.node()
Returns the value of thenode
record component.void
A callback for when task execution fails.reason()
Returns the value of thereason
record component.toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.elasticsearch.cluster.ClusterStateTaskListener
onNoLongerMaster
-
Constructor Details
-
Task
Creates an instance of aTask
record class.- Parameters:
node
- the value for thenode
record componentreason
- the value for thereason
record componentlistener
- the value for thelistener
record 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. -
isBecomeMasterTask
public boolean isBecomeMasterTask() -
isFinishElectionTask
public boolean isFinishElectionTask() -
onFailure
Description copied from interface:ClusterStateTaskListener
A callback for when task execution fails. Implementations of this callback must not throw exceptions: an exception thrown here is logged by the master service atERROR
level and otherwise ignored, except in tests where it raises anAssertionError
. If log-and-ignore is the right behaviour then implementations must do so themselves, typically using a more specific logger and at a less dramatic log level.- Specified by:
onFailure
in interfaceClusterStateTaskListener
-
clusterStateProcessed
Description copied from interface:ClusterStateTaskListener
Called when the result of theClusterStateTaskExecutor.execute(ClusterState, List)
have been processed properly by all listeners. Implementations of this callback must not throw exceptions: an exception thrown here is logged by the master service atERROR
level and otherwise ignored, except in tests where it raises anAssertionError
. If log-and-ignore is the right behaviour then implementations must do so themselves, typically using a more specific logger and at a less dramatic log level.- Specified by:
clusterStateProcessed
in interfaceClusterStateTaskListener
-
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)
. -
node
Returns the value of thenode
record component.- Returns:
- the value of the
node
record component
-
reason
Returns the value of thereason
record component.- Returns:
- the value of the
reason
record component
-
listener
Returns the value of thelistener
record component.- Returns:
- the value of the
listener
record component
-