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

Tree @bf0e966 (Download .tar.gz)

progress_go1.7.go @bf0e966raw · 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()
	})
}