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

Tree @df92ffe (Download .tar.gz)

options_go1.7.go @df92fferaw · history · blame

package mpb

import "context"

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