Status information about loading tasks.
| name | data type | description |
|---|---|---|
| superTask | TaskDto | Task that represents the whole loading process. |
| tasks | array of TaskDto | Tasks of loading process. |
| serverStartTimeMs | number | Startup time stamp of the server. Time stamp acquired using System#currentTimeMillis(). |
Example
{
"superTask" : {
"id" : "...",
"name" : "...",
"totalWork" : 12345,
"workUnit" : "...",
"worked" : 12345,
"done" : true,
"cancelled" : true,
"startTimeMs" : 12345,
"runningDurationMs" : 12345
},
"tasks" : [ {
"id" : "...",
"name" : "...",
"totalWork" : 12345,
"workUnit" : "...",
"worked" : 12345,
"done" : true,
"cancelled" : true,
"startTimeMs" : 12345,
"runningDurationMs" : 12345
}, {
"id" : "...",
"name" : "...",
"totalWork" : 12345,
"workUnit" : "...",
"worked" : 12345,
"done" : true,
"cancelled" : true,
"startTimeMs" : 12345,
"runningDurationMs" : 12345
} ],
"serverStartTimeMs" : 12345
}