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

Tree @23a5444 (Download .tar.gz)

options_go1.7.go @23a5444raw · 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()
		}
	}
}