Created
September 26, 2018 21:52
-
-
Save antonfisher/2a3ff9b79792ecc16b76d1e3145c682c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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