MCPcopy Create free account
hub / github.com/devfeel/dottask / PrintAllTasks

Method PrintAllTasks

tasks.go:305–312  ·  view source on GitHub ↗

PrintAllCronTask print all task info

()

Source from the content-addressed store, hash-verified

303
304// PrintAllCronTask print all task info
305func (service *TaskService) PrintAllTasks() string {
306 body := ""
307 for _, v := range service.taskMap {
308 str, _ := json.Marshal(v)
309 body += string(str) + "\r\n"
310 }
311 return body
312}
313
314// PrintAllTaskCounterInfo print all task counter data
315func (service *TaskService) PrintAllTaskCounterInfo() string {

Callers 4

mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected