Skip to content

Instantly share code, notes, and snippets.

@duguying
Created August 14, 2017 09:15
Show Gist options
  • Save duguying/f28f263eb0a8395b991e90887423c3cb to your computer and use it in GitHub Desktop.
Save duguying/f28f263eb0a8395b991e90887423c3cb to your computer and use it in GitHub Desktop.
golang cancelable http client
package main
import (
"context"
"net/http"
"time"
)
func main() {
cx, cancel := context.WithCancel(context.Background())
req, _ := http.NewRequest("GET", "http://google.com", nil)
req = req.WithContext(cx)
ch := make(chan error)
go func() {
_, err := http.DefaultClient.Do(req)
select {
case <-cx.Done():
// Already timedout
default:
ch <- err
}
}()
// Simulating user cancel request
go func() {
time.Sleep(100 * time.Millisecond)
cancel()
}()
select {
case err := <-ch:
if err != nil {
// HTTP error
panic(err)
}
print("no error")
case <-cx.Done():
panic(cx.Err())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment