Uses of Class
pulse.tasks.logs.Status
-
Packages that use Status 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. -
-
Uses of Status in pulse.tasks
Methods in pulse.tasks that return Status Modifier and Type Method Description Status
Calculation. getStatus()
Status
SearchTask. getStatus()
Methods in pulse.tasks with parameters of type Status Modifier and Type Method Description boolean
Calculation. setStatus(Status status)
Attempts to set the status of this calculation tostatus
.boolean
SearchTask. setStatus(Status status)
Will returntrue
if status could be updated. -
Uses of Status in pulse.tasks.logs
Methods in pulse.tasks.logs that return Status Modifier and Type Method Description Status
StateEntry. getState()
Status
StateEntry. getStatus()
static Status
Status. troubleshoot(SolverException e1)
static Status
Status. valueOf(String name)
Returns the enum constant of this type with the specified name.static Status[]
Status. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in pulse.tasks.logs with parameters of type Status Modifier and Type Method Description void
StateEntry. setStatus(Status status)
Constructors in pulse.tasks.logs with parameters of type Status Constructor Description StateEntry(SearchTask task, Status status)
-