-
Notifications
You must be signed in to change notification settings - Fork 63
/
options.go
44 lines (37 loc) · 1005 Bytes
/
options.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2022, Unikraft GmbH and The KraftKit Authors.
// Licensed under the BSD-3-Clause License (the "License").
// You may not use this file except in compliance with the License.
package paraprogress
import "time"
type ParaProgressOption func(md *ParaProgress) error
func WithRenderer(norender bool) ParaProgressOption {
return func(md *ParaProgress) error {
md.norender = norender
return nil
}
}
func IsParallel(parallel bool) ParaProgressOption {
return func(md *ParaProgress) error {
md.parallel = parallel
return nil
}
}
func WithFailFast(failFast bool) ParaProgressOption {
return func(pp *ParaProgress) error {
pp.failFast = failFast
return nil
}
}
func WithNameWidth(width int) ParaProgressOption {
return func(pp *ParaProgress) error {
pp.nameWidth = width
return nil
}
}
func WithTimeout(timeout time.Duration) ParaProgressOption {
return func(pp *ParaProgress) error {
pp.timeout = timeout
return nil
}
}