|
@@ -19,7 +19,9 @@ type Iface interface {
|
|
|
Shutdown(ctx context.Context) error
|
|
|
}
|
|
|
|
|
|
-func App(t time.Duration, f func(ctx context.Context) *[]Iface) {
|
|
|
+type CallbackFunc func(ctx context.Context, cancel context.CancelFunc) *[]Iface
|
|
|
+
|
|
|
+func App(t time.Duration, f CallbackFunc) {
|
|
|
stop := make(chan os.Signal)
|
|
|
signal.Notify(stop, syscall.SIGTERM)
|
|
|
signal.Notify(stop, syscall.SIGINT)
|
|
@@ -35,7 +37,7 @@ func App(t time.Duration, f func(ctx context.Context) *[]Iface) {
|
|
|
)
|
|
|
|
|
|
sctx, shutdown := context.WithCancel(context.Background())
|
|
|
- ifaces := f(sctx)
|
|
|
+ ifaces := f(sctx, shutdown)
|
|
|
|
|
|
switch val := <-stop; val {
|
|
|
case syscall.SIGINT:
|