Timestamp returns the timestamp of the last status change of the task.
()
| 339 | |
| 340 | // Timestamp returns the timestamp of the last status change of the task. |
| 341 | func (t TaskMeta) Timestamp() time.Time { |
| 342 | return time.Unix(int64(t>>32), 0) |
| 343 | } |
| 344 | |
| 345 | // Kind returns the type of the task. |
| 346 | func (t TaskMeta) Kind() TaskKind { |