Define TimeoutError interface

This commit is contained in:
世界 2022-05-08 19:41:45 +08:00
parent 81484131e3
commit 3acb9463b4
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -50,6 +50,10 @@ func IsClosed(err error) bool {
return IsTimeout(err) || errors.Is(err, io.EOF) || errors.Is(err, net.ErrClosed) || errors.Is(err, syscall.EPIPE)
}
type TimeoutError interface {
Timeout() bool
}
func IsTimeout(err error) bool {
if unwrapErr := errors.Unwrap(err); unwrapErr != nil {
err = unwrapErr
@ -57,9 +61,7 @@ func IsTimeout(err error) bool {
if ne, ok := err.(*os.SyscallError); ok {
err = ne.Err
}
if timeoutErr, isTimeoutErr := err.(interface {
Timeout() bool
}); isTimeoutErr {
if timeoutErr, isTimeoutErr := err.(TimeoutError); isTimeoutErr {
return timeoutErr.Timeout()
}
return false