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

Tree @3443b0d (Download .tar.gz)

options_go1.7.go @3443b0draw · history · blame

package mpb

import "context"

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