1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
package tools
import "github.com/git-lfs/git-lfs/v3/errors"
// Interface for all types of wrapper around a channel of results and an error channel
// Implementors will expose a type-specific channel for results
// Call the Wait() function after processing the results channel to catch any errors
// that occurred during the async processing
type ChannelWrapper interface {
// Call this after processing results channel to check for async errors
Wait() error
}
// Base implementation of channel wrapper to just deal with errors
type BaseChannelWrapper struct {
errorChan <-chan error
}
func (w *BaseChannelWrapper) Wait() error {
var multiErr error
for err := range w.errorChan {
// Combine in case multiple errors
multiErr = errors.Join(multiErr, err)
}
return multiErr
}
func NewBaseChannelWrapper(errChan <-chan error) *BaseChannelWrapper {
return &BaseChannelWrapper{errorChan: errChan}
}
|