goLang实现程序的优雅退出
约 219 字
预计阅读 1 分钟
次阅读
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
|
package main
import (
"fmt"
"github.com/sirupsen/logrus"
"os"
"os/signal"
"syscall"
"time"
)
func main(){
stop := make(chan os.Signal,1)
signal.Notify(stop,syscall.SIGKILL,syscall.SIGINT) //监听ctrl+c 以及 kill 信号,如果有就写入stop管道中
hup := make(chan os.Signal,1)
signal.Notify(hup,syscall.SIGHUP) //监听kill -HUP 信号,如果有就放入hup管道中,让程序重新加载配置
//主逻辑协程
go func(){
for {
logrus.Info("test")
time.Sleep(time.Second)
}
}()
//重载配置文件协程
go func() {
for {
<- hup
fmt.Println("重载配置操作")
}
}()
<- stop
fmt.Println("退出前操作")
}
|