Class GetTaskRequest

java.lang.Object
org.elasticsearch.client.tasks.GetTaskRequest
All Implemented Interfaces:
Validatable

public class GetTaskRequest extends Object implements Validatable
  • Constructor Details

    • GetTaskRequest

      public GetTaskRequest(String nodeId, long taskId)
  • Method Details

    • getNodeId

      public String getNodeId()
    • getTaskId

      public long getTaskId()
    • getWaitForCompletion

      public boolean getWaitForCompletion()
      Should this request wait for all found tasks to complete?
    • setWaitForCompletion

      public GetTaskRequest setWaitForCompletion(boolean waitForCompletion)
      Should this request wait for all found tasks to complete?
    • getTimeout

      public org.elasticsearch.core.TimeValue getTimeout()
      Timeout to wait for any async actions this request must take. It must take anywhere from 0 to 2.
    • setTimeout

      public GetTaskRequest setTimeout(org.elasticsearch.core.TimeValue timeout)
      Timeout to wait for any async actions this request must take.
    • validate

      public Optional<ValidationException> validate()
      Description copied from interface: Validatable
      Perform validation. This method does not have to be overridden in the event that no validation needs to be done, or the validation was done during object construction time. A ValidationException that is not null is assumed to contain validation errors and will be thrown.
      Specified by:
      validate in interface Validatable
      Returns:
      An Optional ValidationException that contains a list of validation errors.
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object