dispatch is responsible for calling any async callbacks
(f func())
| 510 | |
| 511 | // dispatch is responsible for calling any async callbacks |
| 512 | func (ac *asyncCallbacksHandler) push(f func()) { |
| 513 | ac.cbQueue <- f |
| 514 | } |
| 515 | |
| 516 | func (ac *asyncCallbacksHandler) close() { |
| 517 | if ac.closed { |
no outgoing calls
no test coverage detected