Package org.elasticsearch.action.search
Class SearchTask
java.lang.Object
org.elasticsearch.tasks.Task
org.elasticsearch.tasks.CancellableTask
org.elasticsearch.action.search.SearchTask
public class SearchTask extends CancellableTask
Task storing information about a currently running
SearchRequest.-
Nested Class Summary
-
Field Summary
-
Constructor Summary
Constructors Constructor Description SearchTask(long id, java.lang.String type, java.lang.String action, java.util.function.Supplier<java.lang.String> descriptionSupplier, TaskId parentTaskId, java.util.Map<java.lang.String,java.lang.String> headers) -
Method Summary
Modifier and Type Method Description java.lang.StringgetDescription()Generates task descriptionSearchProgressListenergetProgressListener()Return theSearchProgressListenerattached to this task.voidsetProgressListener(SearchProgressListener progressListener)Attach aSearchProgressListenerto this task.booleanshouldCancelChildrenOnCancellation()Returns true if this task can potentially have children that need to be cancelled when it parent is cancelled.Methods inherited from class org.elasticsearch.tasks.CancellableTask
cancelOnParentLeaving, getReasonCancelled, isCancelled, onCancelledMethods inherited from class org.elasticsearch.tasks.Task
getAction, getHeader, getId, getParentTaskId, getStartTime, getStartTimeNanos, getStatus, getType, result, result, taskInfo, taskInfo
-
Constructor Details
-
SearchTask
public SearchTask(long id, java.lang.String type, java.lang.String action, java.util.function.Supplier<java.lang.String> descriptionSupplier, TaskId parentTaskId, java.util.Map<java.lang.String,java.lang.String> headers)
-
-
Method Details
-
getDescription
public final java.lang.String getDescription()Description copied from class:TaskGenerates task description- Overrides:
getDescriptionin classTask
-
setProgressListener
Attach aSearchProgressListenerto this task. -
getProgressListener
Return theSearchProgressListenerattached to this task. -
shouldCancelChildrenOnCancellation
public boolean shouldCancelChildrenOnCancellation()Description copied from class:CancellableTaskReturns true if this task can potentially have children that need to be cancelled when it parent is cancelled.- Specified by:
shouldCancelChildrenOnCancellationin classCancellableTask
-