Codebase list golang-github-vbauerster-mpb / 3443b0d progress_go1.7.go
3443b0d

Tree @3443b0d (Download .tar.gz)

progress_go1.7.go @3443b0draw · history · blame

//+build go1.7

package mpb

import "context"

// WithContext Deprecated, use mpb.WithContext
func (p *Progress) WithContext(ctx context.Context) *Progress {
	if ctx == nil {
		panic("nil context")
	}
	return updateConf(p, func(c *pConf) {
		c.cancel = ctx.Done()
	})
}