Record Class ShardStateAction.FailedShardUpdateTask
java.lang.Object
java.lang.Record
org.elasticsearch.cluster.action.shard.ShardStateAction.FailedShardUpdateTask
- All Implemented Interfaces:
ClusterStateTaskListener
- Enclosing class:
- ShardStateAction
public static record ShardStateAction.FailedShardUpdateTask(ShardStateAction.FailedShardEntry entry, ActionListener<TransportResponse.Empty> listener)
extends Record
implements ClusterStateTaskListener
-
Constructor Summary
ConstructorsConstructorDescriptionFailedShardUpdateTask(ShardStateAction.FailedShardEntry entry, ActionListener<TransportResponse.Empty> listener) Creates an instance of aFailedShardUpdateTaskrecord class. -
Method Summary
Modifier and TypeMethodDescriptionvoidclusterStateProcessed(ClusterState oldState, ClusterState newState) Called when the result of theClusterStateTaskExecutor.execute(ClusterState, List)have been processed properly by all listeners.entry()Returns the value of theentryrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.listener()Returns the value of thelistenerrecord component.voidA callback for when task execution fails.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.elasticsearch.cluster.ClusterStateTaskListener
onNoLongerMaster
-
Constructor Details
-
FailedShardUpdateTask
public FailedShardUpdateTask(ShardStateAction.FailedShardEntry entry, ActionListener<TransportResponse.Empty> listener) Creates an instance of aFailedShardUpdateTaskrecord class.- Parameters:
entry- the value for theentryrecord componentlistener- the value for thelistenerrecord component
-
-
Method Details
-
onFailure
Description copied from interface:ClusterStateTaskListenerA callback for when task execution fails. Implementations of this callback must not throw exceptions: an exception thrown here is logged by the master service atERRORlevel 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:
onFailurein interfaceClusterStateTaskListener
-
clusterStateProcessed
Description copied from interface:ClusterStateTaskListenerCalled 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 atERRORlevel 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:
clusterStateProcessedin interfaceClusterStateTaskListener
-
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 theentryrecord component.- Returns:
- the value of the
entryrecord component
-
listener
Returns the value of thelistenerrecord component.- Returns:
- the value of the
listenerrecord component
-