IncRequestsInProgress increments the requests in progress counter
()
| 25 | |
| 26 | // IncRequestsInProgress increments the requests in progress counter |
| 27 | func (s *Stats) IncRequestsInProgress() { |
| 28 | atomic.AddInt64(&s.requestsInProgress, 1) |
| 29 | } |
| 30 | |
| 31 | // DecRequestsInProgress decrements the requests in progress counter |
| 32 | func (s *Stats) DecRequestsInProgress() { |