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

Tree @28c623e (Download .tar.gz)

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