sing/common/exceptions/timeout.go
2022-07-06 21:15:32 +08:00

23 lines
384 B
Go

package exceptions
import (
"errors"
"os"
)
type TimeoutError interface {
Timeout() bool
}
func IsTimeout(err error) bool {
if unwrapErr := errors.Unwrap(err); unwrapErr != nil {
err = unwrapErr
}
if ne, ok := err.(*os.SyscallError); ok {
err = ne.Err
}
if timeoutErr, isTimeoutErr := err.(TimeoutError); isTimeoutErr {
return timeoutErr.Timeout()
}
return false
}