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

Tree @ddf99f1 (Download .tar.gz)

options_go1.7.go @ddf99f1raw · history · blame

package mpb

import "context"

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