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

Tree @cbc336f (Download .tar.gz)

options_go1.7.go @cbc336fraw · history · blame

//+build go1.7

package mpb

import "context"

func WithContext(ctx context.Context) ProgressOption {
	return func(s *pState) {
		if ctx != nil {
			s.cancel = ctx.Done()
		}
	}
}