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

Tree @1c75337 (Download .tar.gz)

options_go1.7.go @1c75337raw · history · blame

//+build go1.7

package mpb

import "context"

// WithContext provided context will be used for cancellation purposes
func WithContext(ctx context.Context) ProgressOption {
	return func(s *pState) {
		if ctx != nil {
			s.cancel = ctx.Done()
		}
	}
}