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

Tree @37c0d3b (Download .tar.gz)

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