Browse Source

Update README.md

Vova Tkach 5 years ago
parent
commit
f1cedf757b
1 changed files with 13 additions and 0 deletions
  1. 13 0
      README.md

+ 13 - 0
README.md

@@ -72,3 +72,16 @@ func main() {
 	ctrlc.App(8*time.Second, MyAppFunc)
 }
 ```
+
+## Explanation
+```
+type Iface interface {
+	Shutdown(ctx context.Context) error
+}
+
+type CallbackFunc func(ctx context.Context, shutdown context.CancelFunc) *[]Iface
+
+func App(t time.Duration, f CallbackFunc)
+```
+
+**t** in `App` function is a timeout for `Shutdown` function, if Shutdown function will be not closed, context will be canceled afetr this value and will print error to console.