-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclient.go
More file actions
52 lines (45 loc) · 2.19 KB
/
client.go
File metadata and controls
52 lines (45 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package uhttp
import (
"net"
"net/http"
"time"
)
// Client is an HTTP over UDP client. It is largely a simplistic wrapper over RoundTripMultier,
// meant to ease use for people familiar with http.Client.
type Client struct {
Transport RoundTripMultier
}
// Get makes a GET request for url, waits up to wait, and delivers any responses received to fn.
// If an error occurs, or fn returns an error, execution will return immediately. The sentinal
// error Stop may be returned by fn to cause Get to return immediately with no error.
func (c *Client) Get(url string, wait time.Duration, fn func(sender net.Addr, resp *http.Response) error) error {
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return err
}
return c.Do(req, wait, fn)
}
// Do issues r, waits up to wait, and delivers any responses received to fn. If an error occurs,
// fn returns an error, or r.Context() expires, execution will return immediately. The sentinal
// error Stop may be returned by fn to cause Do to return immediately with no error.
func (c *Client) Do(r *http.Request, wait time.Duration, fn func(sender net.Addr, resp *http.Response) error) error {
return c.Transport.RoundTripMulti(r, wait, fn)
}
// DefaultClient is the Client used by the top-level Do and Get functions.
var DefaultClient = &Client{
Transport: DefaultTransport,
}
// Get makes a GET request for url via DefaultClient, waits up to wait, and delivers any
// responses received to fn. If an error occurs, or fn returns an error, execution will return
// immediately. The sentinal error Stop may be returned by fn to cause Get to return immediately
// with no error.
func Get(url string, wait time.Duration, fn func(sender net.Addr, resp *http.Response) error) error {
return DefaultClient.Get(url, wait, fn)
}
// Do issues r via DefaultClient, waits up to wait, and delivers any responses received to fn.
// If an error occurs, fn returns an error, or r.Context() expires, execution will return
// immediately. The sentinal error Stop may be returned by fn to cause Do to return immediately
// with no error.
func Do(r *http.Request, wait time.Duration, fn func(sender net.Addr, resp *http.Response) error) error {
return DefaultClient.Do(r, wait, fn)
}