Skip to content

Instantly share code, notes, and snippets.

@antonfisher
Created September 26, 2018 21:52
Show Gist options
  • Save antonfisher/2a3ff9b79792ecc16b76d1e3145c682c to your computer and use it in GitHub Desktop.
Save antonfisher/2a3ff9b79792ecc16b76d1e3145c682c to your computer and use it in GitHub Desktop.
func waitForTask(id string) (err error) {
done := make(chan error)
timer := time.NewTimer(0)
timeout := time.After(10 * time.Seconds)
go func() {
for {
select {
case <-timeout:
timer.Stop()
done <- fmt.Errorf("Timeout")
return
case <-timer.C:
taskDone, err := GetTaskStatus(id)
if err != nil {
done <- err
return
} else if taskDone {
done <- nil
return
}
timer = time.NewTimer(2 * time.Second)
}
}
}()
return <-done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment