Base implementation of channel wrapper to just deal with errors
| 13 | |
| 14 | // Base implementation of channel wrapper to just deal with errors |
| 15 | type BaseChannelWrapper struct { |
| 16 | errorChan <-chan error |
| 17 | } |
| 18 | |
| 19 | func (w *BaseChannelWrapper) Wait() error { |
| 20 | var multiErr error |
nothing calls this directly
no outgoing calls
no test coverage detected