Status returns the current status of the task.
()
| 349 | |
| 350 | // Status returns the current status of the task. |
| 351 | func (t TaskMeta) Status() TaskStatus { |
| 352 | return TaskStatus(t & math.MaxUint16) |
| 353 | } |
| 354 | |
| 355 | // uint64 represents the TaskMeta as a uint64. |
| 356 | func (t TaskMeta) uint64() uint64 { |
no test coverage detected