Interface TaskInfo
-
public interface TaskInfo
Provides obtained from the DBPersistTask
information.- See Also:
PersistTasksStorage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getCreated()
The time of the task creation in milliseconds.Date
getCreateDate()
String
getDescription()
Text description of the task.long
getId()
The task id.String
getNodeId()
The origin node id where this task was created.PersistTaskStage
getStage()
Current stage of the task.String
getType()
Database representation (db field) of this task type.long
getUpdated()
Date
getUpdateDate()
-
-
-
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()
-
-