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

Tree @c3f4de9 (Download .tar.gz)

options_go1.7.go @c3f4de9raw · history · blame

//+build go1.7

package mpb

import "context"

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