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

Tree @878520f (Download .tar.gz)

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