-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.go
67 lines (55 loc) · 1.49 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package lifecycle
import (
"context"
"os"
"syscall"
"time"
)
// Option application option
type Option func(*options)
// options application option struct
type options struct {
id string
name string
version string
metadata map[string]string
// sigs signals for application shutdown
sigs []os.Signal
ctx context.Context
stopTimeout time.Duration
}
// defaultOptions default options
var defaultOptions = options{
metadata: make(map[string]string),
sigs: []os.Signal{syscall.SIGTERM, syscall.SIGQUIT, syscall.SIGINT},
ctx: context.Background(),
stopTimeout: time.Second,
}
// WithID with application id
func WithID(id string) Option {
return func(o *options) { o.id = id }
}
// WithName with application name
func WithName(name string) Option {
return func(o *options) { o.name = name }
}
// WithVersion with application version
func WithVersion(version string) Option {
return func(o *options) { o.version = version }
}
// WithMetadata with application metadata
func WithMetadata(md map[string]string) Option {
return func(o *options) { o.metadata = md }
}
// WithSignal with exit signals
func WithSignal(sigs ...os.Signal) Option {
return func(o *options) { o.sigs = sigs }
}
// WithContext with service context
func WithContext(ctx context.Context) Option {
return func(o *options) { o.ctx = ctx }
}
// WithStopTimeout with app stop timeout.
func WithStopTimeout(timeout time.Duration) Option {
return func(o *options) { o.stopTimeout = timeout }
}