()
| 83 | } |
| 84 | |
| 85 | func reschedule() { |
| 86 | // Do not block if there is already a pending reschedule request. |
| 87 | select { |
| 88 | case rescheduleC <- struct{}{}: |
| 89 | default: |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | func timerRoutine() { |
| 94 | var now time.Time |
no outgoing calls
no test coverage detected
searching dependent graphs…