BusyWorkers returns the numbers of failure tasks.
()
| 167 | |
| 168 | // BusyWorkers returns the numbers of failure tasks. |
| 169 | func (q *queue) FailureTasks() int { |
| 170 | return int(q.metric.FailureTasks()) |
| 171 | } |
| 172 | |
| 173 | // BusyWorkers returns the numbers of submitted tasks. |
| 174 | func (q *queue) SubmittedTasks() int { |
nothing calls this directly
no test coverage detected