Created
August 14, 2017 09:15
-
-
Save duguying/f28f263eb0a8395b991e90887423c3cb to your computer and use it in GitHub Desktop.
golang cancelable http client
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
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