bbgo_origin/pkg/bbgo/graceful_shutdown.go

21 lines
331 B
Go
Raw Normal View History

package bbgo
import (
"context"
"sync"
)
//go:generate callbackgen -type Graceful
type Graceful struct {
shutdownCallbacks []func(ctx context.Context, wg *sync.WaitGroup)
}
func (g *Graceful) Shutdown(ctx context.Context) {
var wg sync.WaitGroup
wg.Add(len(g.shutdownCallbacks))
go g.EmitShutdown(ctx, &wg)
wg.Wait()
}