BusyWorkers returns the numbers of submitted tasks.
()
| 172 | |
| 173 | // BusyWorkers returns the numbers of submitted tasks. |
| 174 | func (q *queue) SubmittedTasks() int { |
| 175 | return int(q.metric.SubmittedTasks()) |
| 176 | } |
| 177 | |
| 178 | // SuspendingTasks returns the numbers of suspending tasks. |
| 179 | func (q *queue) SuspendingTasks() int { |
nothing calls this directly
no test coverage detected