2023-12-07 15:31:00 +08:00
|
|
|
//go:build windows
|
2020-04-06 03:14:42 +08:00
|
|
|
|
|
|
|
package asynq
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"os/signal"
|
|
|
|
|
|
|
|
"golang.org/x/sys/windows"
|
|
|
|
)
|
|
|
|
|
2020-04-06 05:56:06 +08:00
|
|
|
// waitForSignals waits for signals and handles them.
|
|
|
|
// It handles SIGTERM and SIGINT.
|
2020-04-06 03:14:42 +08:00
|
|
|
// SIGTERM and SIGINT will signal the process to exit.
|
|
|
|
//
|
|
|
|
// Note: Currently SIGTSTP is not supported for windows build.
|
2020-04-12 23:16:42 +08:00
|
|
|
func (srv *Server) waitForSignals() {
|
|
|
|
srv.logger.Info("Send signal TERM or INT to terminate the process")
|
2020-04-06 03:14:42 +08:00
|
|
|
sigs := make(chan os.Signal, 1)
|
|
|
|
signal.Notify(sigs, windows.SIGTERM, windows.SIGINT)
|
|
|
|
<-sigs
|
|
|
|
}
|
2020-09-27 08:33:29 +08:00
|
|
|
|
|
|
|
func (s *Scheduler) waitForSignals() {
|
|
|
|
s.logger.Info("Send signal TERM or INT to stop the scheduler")
|
|
|
|
sigs := make(chan os.Signal, 1)
|
|
|
|
signal.Notify(sigs, windows.SIGTERM, windows.SIGINT)
|
|
|
|
<-sigs
|
|
|
|
}
|