TaskMeta stores a timestamp, a TaskKind and a Status. The format of this is: 32 bits: UNIX timestamp (overflows on 2106-02-07) 16 bits: TaskKind 16 bits: TaskStatus
| 331 | // 16 bits: TaskKind |
| 332 | // 16 bits: TaskStatus |
| 333 | type TaskMeta uint64 |
| 334 | |
| 335 | func newTaskMeta(kind TaskKind, status TaskStatus) TaskMeta { |
| 336 | now := time.Now().UTC().Unix() |
no outgoing calls
no test coverage detected