(d time.Duration)
| 205 | // sleeper represents an abstraction for waiting an amount of time. |
| 206 | type sleeper interface { |
| 207 | Sleep(d time.Duration) |
| 208 | } |
| 209 | |
| 210 | // sleeperFunc uses the underhood function for implementing the wait operation. |
no outgoing calls