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

Tree @dfa2d5a (Download .tar.gz)

options_go1.7.go @dfa2d5araw · 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 {
			s.cancel = ctx.Done()
		}
	}
}