Interface TaskInfo
-
public interface TaskInfoProvides obtained from the DBPersistTaskinformation.- See Also:
PersistTasksStorage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetCreated()The time of the task creation in milliseconds.DategetCreateDate()StringgetDescription()Text description of the task.longgetId()The task id.StringgetNodeId()The origin node id where this task was created.PersistTaskStagegetStage()Current stage of the task.StringgetType()Database representation (db field) of this task type.longgetUpdated()DategetUpdateDate()
-
-
-
Method Detail
-
getId
long getId()
The task id.
-
getType
@NotNull String getType()
Database representation (db field) of this task type.- See Also:
TaskType.getDbString()
-
getDescription
@NotNull String getDescription()
Text description of the task.
-
getNodeId
@NotNull String getNodeId()
The origin node id where this task was created.
-
getStage
@NotNull PersistTaskStage getStage()
Current stage of the task.
-
getCreated
long getCreated()
The time of the task creation in milliseconds.
-
getCreateDate
@NotNull Date getCreateDate()
-
getUpdated
long getUpdated()
- Returns:
- the time in milliseconds when the task was updated
- Since:
- 2023.11
-
getUpdateDate
@NotNull Date getUpdateDate()
-
-