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

Tree @bad4074 (Download .tar.gz)

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