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

Tree @375dd31 (Download .tar.gz)

options_go1.7.go @375dd31raw · history · blame

//+build go1.7

package mpb

import "context"

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