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.lang.String description, TaskId parentTaskId, java.util.Map<java.lang.String,java.lang.String> headers) -
Method Summary
Modifier and Type Method Description org.elasticsearch.action.search.SearchProgressListenergetProgressListener()Return theSearchProgressListenerattached to this task.voidsetProgressListener(org.elasticsearch.action.search.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, getDescription, 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.lang.String description, TaskId parentTaskId, java.util.Map<java.lang.String,java.lang.String> headers)
-
-
Method Details
-
setProgressListener
public final void setProgressListener(org.elasticsearch.action.search.SearchProgressListener progressListener)Attach aSearchProgressListenerto this task. -
getProgressListener
public final org.elasticsearch.action.search.SearchProgressListener 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
-