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

Tree @7a77f9d (Download .tar.gz)

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