ReadyTaskKey returns the subkey of k, where ready tasks are stored.
(k string)
| 421 | |
| 422 | // ReadyTaskKey returns the subkey of k, where ready tasks are stored. |
| 423 | func ReadyTaskKey(k string) string { |
| 424 | return Key(k, "ready") |
| 425 | } |
| 426 | |
| 427 | // WaitingTaskKey returns the subkey of k, where waiting tasks are stored. |
| 428 | func WaitingTaskKey(k string) string { |