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

Tree @e99ce08 (Download .tar.gz)

options_go1.7.go @e99ce08raw · history · blame

package mpb

import "context"

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