https://github.com/xmas7/go-temp-err-catcher
This is a little package to use with your net.Listeners. Docs: https://godoc.org/github.com/jbenet/go-temp-err-catcher Get: go get github.com/jbenet/go-temp-err-catcher
https://github.com/xmas7/go-temp-err-catcher
catcher err go temp
Last synced: about 2 months ago
JSON representation
This is a little package to use with your net.Listeners. Docs: https://godoc.org/github.com/jbenet/go-temp-err-catcher Get: go get github.com/jbenet/go-temp-err-catcher
- Host: GitHub
- URL: https://github.com/xmas7/go-temp-err-catcher
- Owner: xmas7
- License: mit
- Created: 2022-09-06T00:13:42.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-09-06T00:13:56.000Z (over 2 years ago)
- Last Synced: 2025-02-01T09:27:44.576Z (4 months ago)
- Topics: catcher, err, go, temp
- Language: Go
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-temp-err-catcher
This is a little package to use with your net.Listeners.
Docs: https://godoc.org/github.com/jbenet/go-temp-err-catcher
Get:
go get github.com/jbenet/go-temp-err-catcher
## Examples
It is meant to be used with things like net.Lister.Accept:
```go
import (
tec "github.com/jbenet/go-temp-err-catcher"
)func listen(listener net.Listener) {
var c tec.TempErrCatcherfor {
conn, err := listener.Accept()
if err != nil && c.IsTemporary(c) {
continue
}
return conn, err
}
}
```You can make your errors implement `Temporary`:
```go
type errTemp struct {
e error
}func (e errTemp) Temporary() bool {
return true
}func (e errTemp) Error() string {
return e.e.Error()
}err := errors.New("beep boop")
var c tec.TempErrCatcher
c.IsTemporary(err) // false
c.IsTemporary(errTemp{err}) // true
```Or just use `ErrTemp`:
```go
err := errors.New("beep boop")
var c tec.TempErrCatcher
c.IsTemporary(err) // false
c.IsTemporary(tec.ErrTemp{err}) // true
```You can also define an `IsTemp` function to classify errors:
```go
var ErrSkip = errors.New("this should be skipped")
var ErrNotSkip = errors.New("this should not be skipped")var c tec.TempErrCatcher
c.IsTemp = func(e error) bool {
return e == ErrSkip
}c.IsTemporary(ErrSkip) // true
c.IsTemporary(ErrNotSkip) // false
c.IsTemporary(ErrTemp) // false! no longer accepts Temporary()
```