Browse Source

Rename variable

Vova Tkach 5 years ago
parent
commit
baed95cd2d
3 changed files with 5 additions and 5 deletions
  1. 2 2
      README.md
  2. 1 1
      ctrlc/ctrlc.go
  3. 2 2
      main.go

+ 2 - 2
README.md

@@ -18,7 +18,7 @@ import (
 )
 )
 
 
 func main() {
 func main() {
-	MyAppFunc := func(ctx context.Context, cancel context.CancelFunc) *[]ctrlc.Iface {
+	MyAppFunc := func(ctx context.Context, shutdown context.CancelFunc) *[]ctrlc.Iface {
 		// Some custom logic
 		// Some custom logic
 		// With goroutine inside
 		// With goroutine inside
 		test := Run()
 		test := Run()
@@ -59,7 +59,7 @@ func main() {
 					fmt.Printf("Web server startup error: %s\n", err.Error())
 					fmt.Printf("Web server startup error: %s\n", err.Error())
 					// Application can't working without http web server
 					// Application can't working without http web server
 					// Call cancel context func on error
 					// Call cancel context func on error
-					cancel()
+					shutdown()
 					return
 					return
 				}
 				}
 			}
 			}

+ 1 - 1
ctrlc/ctrlc.go

@@ -19,7 +19,7 @@ type Iface interface {
 	Shutdown(ctx context.Context) error
 	Shutdown(ctx context.Context) error
 }
 }
 
 
-type CallbackFunc func(ctx context.Context, cancel context.CancelFunc) *[]Iface
+type CallbackFunc func(ctx context.Context, shutdown context.CancelFunc) *[]Iface
 
 
 func App(t time.Duration, f CallbackFunc) {
 func App(t time.Duration, f CallbackFunc) {
 	stop := make(chan os.Signal)
 	stop := make(chan os.Signal)

+ 2 - 2
main.go

@@ -10,7 +10,7 @@ import (
 )
 )
 
 
 func main() {
 func main() {
-	MyAppFunc := func(ctx context.Context, cancel context.CancelFunc) *[]ctrlc.Iface {
+	MyAppFunc := func(ctx context.Context, shutdown context.CancelFunc) *[]ctrlc.Iface {
 		// Some custom logic
 		// Some custom logic
 		// With goroutine inside
 		// With goroutine inside
 		test := Run()
 		test := Run()
@@ -51,7 +51,7 @@ func main() {
 					fmt.Printf("Web server startup error: %s\n", err.Error())
 					fmt.Printf("Web server startup error: %s\n", err.Error())
 					// Application can't working without http web server
 					// Application can't working without http web server
 					// Call cancel context func on error
 					// Call cancel context func on error
-					cancel()
+					shutdown()
 					return
 					return
 				}
 				}
 			}
 			}