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

Tree @ee9d54f (Download .tar.gz)

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