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

Tree @b7b647a (Download .tar.gz)

options_go1.7.go @b7b647araw · 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()
		}
	}
}