Skip to content

Instantly share code, notes, and snippets.

@rynmrtn
Forked from ngauthier/timeout_and_tick.go
Created August 3, 2017 01:07
Show Gist options
  • Save rynmrtn/6d0d4d38adb2f8fb799b86af430a1d21 to your computer and use it in GitHub Desktop.
Save rynmrtn/6d0d4d38adb2f8fb799b86af430a1d21 to your computer and use it in GitHub Desktop.
Golang timeout and tick loop
// keepDoingSomething will keep trying to doSomething() until either
// we get a result from doSomething() or the timeout expires
func keepDoingSomething() (bool, error) {
timeout := time.After(5 * time.Second)
tick := time.Tick(500 * time.Millisecond)
// Keep trying until we're timed out or got a result or got an error
for {
select {
// Got a timeout! fail with a timeout error
case <-timeout:
return false, errors.New("timed out")
// Got a tick, we should check on doSomething()
case <-tick:
ok, err := doSomething()
// Error from doSomething(), we should bail
if err != nil {
return false, err
// doSomething() worked! let's finish up
} else if ok {
return true, nil
}
// doSomething() didn't work yet, but it didn't fail, so let's try again
// this will exit up to the for loop
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment