BusyWorkers returns the numbers of success tasks.
()
| 162 | |
| 163 | // BusyWorkers returns the numbers of success tasks. |
| 164 | func (q *queue) SuccessTasks() int { |
| 165 | return int(q.metric.SuccessTasks()) |
| 166 | } |
| 167 | |
| 168 | // BusyWorkers returns the numbers of failure tasks. |
| 169 | func (q *queue) FailureTasks() int { |
nothing calls this directly
no test coverage detected