我有一个自定义的http客户端,它有一个默认的超时值。代码是这样的:
type Client struct {
*http.Client
timeout time.Duration
}
func (c *Client) Send(ctx context.Context, r *http.Request) (int, []byte, error) {
// If ctx has timeout set, then don't change it.
// Otherwise, create new context with ctx.WithTimeout(c.timeout)
}
如何检查ctx
是否设置了超时?
答案 0 :(得分:3)
检查来自context.Deadline
的bool值:
截止日期返回代表此上下文完成工作的时间 应该被取消。没有截止日期,截止日期返回ok == false 组。对截止日期的连续调用会返回相同的结果。
func (c *Client) Send(ctx context.Context, r *http.Request) (int, []byte, error) {
if _, deadlineSet := ctx.Deadline(); !deadlineSet {
ctx, _ = context.WithTimeout(ctx, c.timeout)
}
}