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

Tree @bf0e966 (Download .tar.gz)

options_go1.7.go @bf0e966raw · history · blame

package mpb

import "context"

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