MCPcopy Create free account
hub / github.com/TheThingsNetwork/lorawan-stack / ReadyTaskKey

Function ReadyTaskKey

pkg/redis/redis.go:423–425  ·  view source on GitHub ↗

ReadyTaskKey returns the subkey of k, where ready tasks are stored.

(k string)

Source from the content-addressed store, hash-verified

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

Callers 6

initTaskGroupFunction · 0.85
dispatchTaskFunction · 0.85
popTaskFunction · 0.85
CloseMethod · 0.85
TestInitTaskGroupFunction · 0.85
TestPopTaskFunction · 0.85

Calls 1

KeyFunction · 0.85

Tested by 2

TestInitTaskGroupFunction · 0.68
TestPopTaskFunction · 0.68