Module org.elasticsearch.server
Record Class ShardStateAction.StartedShardUpdateTask
java.lang.Object
java.lang.Record
org.elasticsearch.cluster.action.shard.ShardStateAction.StartedShardUpdateTask
- All Implemented Interfaces:
ClusterStateTaskListener
- Enclosing class:
- ShardStateAction
public static record ShardStateAction.StartedShardUpdateTask(ShardStateAction.StartedShardEntry entry, ActionListener<Void> listener)
extends Record
implements ClusterStateTaskListener
-
Constructor Summary
ConstructorsConstructorDescriptionStartedShardUpdateTask
(ShardStateAction.StartedShardEntry entry, ActionListener<Void> listener) Creates an instance of aStartedShardUpdateTask
record class. -
Method Summary
Modifier and TypeMethodDescriptionentry()
Returns the value of theentry
record component.final boolean
Indicates whether some other object is "equal to" this one.getEntry()
final int
hashCode()
Returns a hash code value for this object.listener()
Returns the value of thelistener
record component.void
A callback for when task execution fails.void
toString()
Returns a string representation of this record class.
-
Constructor Details
-
StartedShardUpdateTask
public StartedShardUpdateTask(ShardStateAction.StartedShardEntry entry, ActionListener<Void> listener) Creates an instance of aStartedShardUpdateTask
record class.- Parameters:
entry
- the value for theentry
record componentlistener
- the value for thelistener
record component
-
-
Method Details
-
getEntry
-
onFailure
Description copied from interface:ClusterStateTaskListener
A callback for when task execution fails. May receive aNotMasterException
if this node stopped being the master before this task was executed or aProcessClusterEventTimeoutException
if the task timed out before it was executed. If the task fails during execution then this method receives the corresponding exception. If the task executes successfully but the resulting cluster state publication fails then this method receives aFailedToCommitClusterStateException
. If publication fails then a new master is elected and the update might or might not take effect, depending on whether or not the newly-elected master accepted the published state that failed to be committed.Use
MasterService.isPublishFailureException(java.lang.Exception)
to detect the "expected" master failure cases if needed.Implementations of this callback must not throw exceptions: an exception thrown here is logged by the master service at
ERROR
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
-
onSuccess
public void onSuccess() -
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)
. -
entry
Returns the value of theentry
record component.- Returns:
- the value of the
entry
record component
-
listener
Returns the value of thelistener
record component.- Returns:
- the value of the
listener
record component
-