Codebase list golang-github-vbauerster-mpb / 86e2bae options_go1.7.go
86e2bae

Tree @86e2bae (Download .tar.gz)

options_go1.7.go @86e2baeraw · history · blame

//+build go1.7

package mpb

import "context"

// WithContext provided context will be used for cancellation purposes
func WithContext(ctx context.Context) ProgressOption {
	return func(s *pState) {
		if ctx == nil {
			panic("ctx must not be nil")
		}
		s.cancel = ctx.Done()
	}
}