Browse Source

Optimization, add helper func with default timeout

Volodymyr Tkach 2 years ago
parent
commit
44bc5d3e6e
2 changed files with 6 additions and 2 deletions
  1. 5 1
      ctrlc/ctrlc.go
  2. 1 1
      main.go

+ 5 - 1
ctrlc/ctrlc.go

@@ -22,7 +22,11 @@ type Iface interface {
 
 type CallbackFunc func(ctx context.Context, shutdown context.CancelFunc) *[]Iface
 
-func App(t time.Duration, f CallbackFunc) {
+func App(f CallbackFunc) {
+	AppWithTimeOut(8*time.Second, f)
+}
+
+func AppWithTimeOut(t time.Duration, f CallbackFunc) {
 	stop := make(chan os.Signal, 1)
 	signal.Notify(stop, syscall.SIGTERM)
 	signal.Notify(stop, syscall.SIGINT)

+ 1 - 1
main.go

@@ -67,5 +67,5 @@ func main() {
 	}
 
 	// Run application
-	ctrlc.App(8*time.Second, MyAppFunc)
+	ctrlc.App(MyAppFunc)
 }