Kind returns the type of the task.
()
| 344 | |
| 345 | // Kind returns the type of the task. |
| 346 | func (t TaskMeta) Kind() TaskKind { |
| 347 | return TaskKind((t >> 16) & math.MaxUint16) |
| 348 | } |
| 349 | |
| 350 | // Status returns the current status of the task. |
| 351 | func (t TaskMeta) Status() TaskStatus { |
no test coverage detected