1
0
mirror of https://github.com/golang/go synced 2024-11-21 11:24:39 -07:00

add WaitWithTimeout to WaitGroup

This commit is contained in:
bolovincev 2024-09-05 10:52:28 +03:00
parent 1b5ae45181
commit e0ba39bb4b

View File

@ -127,3 +127,35 @@ func (wg *WaitGroup) Wait() {
}
}
}
// WaitWithTimeout returns the value "true" when the [WaitGroup] counter is zero.
// And returns the value "false" when the wait is completed by timeout.
//
// func shutdownServices() {
// wg := &sync.WaitGroup{}
// wg.Add(1)
// shutdownServece1(wg)
//
// wg.Add(1)
// shutdownServece2(wg)
//
// wg.WaitWithTimeout(1 * time.Minute)
// os.Exit(0)
// }
func (wg *WaitGroup) WaitWithTimeout(timeout time.Duration) bool {
timeoutChan := time.After(timeout)
waitChan := make(chan struct{})
go func() {
wg.Wait()
close(waitChan)
}()
select {
case <-timeoutChan:
return false
case <-waitChan:
return true
}
}