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

Tree @732f0c8 (Download .tar.gz)

options_go1.7.go @732f0c8raw · history · blame

package mpb

import "context"

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