Record Class ClusterStateTaskExecutor.LegacyClusterTaskResultActionListener

java.lang.Object
java.lang.Record
org.elasticsearch.cluster.ClusterStateTaskExecutor.LegacyClusterTaskResultActionListener
All Implemented Interfaces:
ActionListener<ClusterState>
Enclosing interface:
ClusterStateTaskExecutor<T extends ClusterStateTaskListener>

public static record ClusterStateTaskExecutor.LegacyClusterTaskResultActionListener(ClusterStateTaskListener task, ClusterState originalState) extends Record implements ActionListener<ClusterState>
  • Constructor Details

    • LegacyClusterTaskResultActionListener

      public LegacyClusterTaskResultActionListener(ClusterStateTaskListener task, ClusterState originalState)
      Creates an instance of a LegacyClusterTaskResultActionListener record class.
      Parameters:
      task - the value for the task record component
      originalState - the value for the originalState record component
  • Method Details

    • onResponse

      public void onResponse(ClusterState publishedState)
      Description copied from interface: ActionListener
      Handle action response. This response may constitute a failure or a success but it is up to the listener to make that decision.
      Specified by:
      onResponse in interface ActionListener<ClusterState>
    • onFailure

      public void onFailure(Exception e)
      Description copied from interface: ActionListener
      A failure caused by an exception at some phase of the task.
      Specified by:
      onFailure in interface ActionListener<ClusterState>
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • task

      public ClusterStateTaskListener task()
      Returns the value of the task record component.
      Returns:
      the value of the task record component
    • originalState

      public ClusterState originalState()
      Returns the value of the originalState record component.
      Returns:
      the value of the originalState record component