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

Tree @69c9fb4 (Download .tar.gz)

options_go1.7.go @69c9fb4raw · history · blame

package mpb

import "context"

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