Uses of Class
pulse.tasks.SearchTask
-
Packages that use SearchTask Package Description pulse.tasks Introduces theSearchTask
, which is the main actor inPULsE
, and theTaskManager
, a high-level class which among other functions manages loading and executingSearchTask
s.pulse.tasks.logs Lists classes for logging, storing runtime information including statuses.pulse.tasks.processing Lists classes for storing runtime information, storing and ordering of final execution results, storing intermediate results of execution to check convergence.pulse.ui.components This package contains all custom Swing-based components of the graphical user interface ofPULsE
that are used to interact with all other entities, such asPropertyHolder
s, etc.pulse.ui.components.models -
-
Uses of SearchTask in pulse.tasks
Methods in pulse.tasks that return SearchTask Modifier and Type Method Description SearchTask
TaskManager. addTask(SearchTask t)
If a taskequal
tot
has already been previously loaded, does nothing.SearchTask
TaskManager. getSelectedTask()
SearchTask
TaskManager. getTask(int externalId)
Finds aSearchTask
using the external identifier specified in its metadata.SearchTask
TaskManager. getTask(Identifier id)
Finds aSearchTask
whoseIdentifier
matchesid
.Methods in pulse.tasks that return types with arguments of type SearchTask Modifier and Type Method Description List<SearchTask>
TaskManager. getTaskList()
Methods in pulse.tasks with parameters of type SearchTask Modifier and Type Method Description SearchTask
TaskManager. addTask(SearchTask t)
If a taskequal
tot
has already been previously loaded, does nothing.void
TaskManager. execute(SearchTask t)
Executes t
asynchronously using aCompletableFuture
.int
TaskManager. indexOfTask(SearchTask t)
boolean
TaskManager. removeTask(SearchTask t)
Ift
is found in the local repository, removes it and triggers aTASK_REMOVED
event.Constructors in pulse.tasks with parameters of type SearchTask Constructor Description Calculation(SearchTask t)
-
Uses of SearchTask in pulse.tasks.logs
Methods in pulse.tasks.logs that return SearchTask Modifier and Type Method Description SearchTask
StateEntry. getTask()
Constructors in pulse.tasks.logs with parameters of type SearchTask Constructor Description CorrelationLogEntry(SearchTask t)
DataLogEntry(SearchTask task)
Creates a newDataLogEntry
based on the current values of the properties fromtask
which match the currently selectedLogFormat
.Log(SearchTask task)
Creates aLog
for thistask
that will automatically storeTaskStatEvent
s and a list ofDataLogEntr
ies in thread-safe collections.LogEntry(SearchTask t)
Creates aLogEntry
from thisSearchTask
.StateEntry(SearchTask task, Status status)
-
Uses of SearchTask in pulse.tasks.processing
Methods in pulse.tasks.processing with parameters of type SearchTask Modifier and Type Method Description void
CorrelationBuffer. inflate(SearchTask t)
Constructors in pulse.tasks.processing with parameters of type SearchTask Constructor Description Result(SearchTask task, ResultFormat format)
Creates an individualResult
related to the current state oftask
using the specifiedformat
. -
Uses of SearchTask in pulse.ui.components
Methods in pulse.ui.components with parameters of type SearchTask Modifier and Type Method Description void
CalculationTable. identifySelection(SearchTask t)
void
Chart. plot(SearchTask task, boolean extendedCurve)
void
ResultTable. select(SearchTask t)
void
CalculationTable. update(SearchTask t)
-
Uses of SearchTask in pulse.ui.components.models
Fields in pulse.ui.components.models declared as SearchTask Modifier and Type Field Description protected SearchTask
TaskBoxModel. selectedTask
Methods in pulse.ui.components.models that return SearchTask Modifier and Type Method Description SearchTask
TaskBoxModel. getElementAt(int index)
Methods in pulse.ui.components.models with parameters of type SearchTask Modifier and Type Method Description void
TaskTableModel. addTask(SearchTask t)
void
StoredCalculationTableModel. update(SearchTask t)
-