You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package errorx
|
|
|
|
import "sync"
|
|
|
|
type AtomicError struct {
|
|
err error
|
|
lock sync.Mutex
|
|
}
|
|
|
|
func (ae *AtomicError) Set(err error) {
|
|
ae.lock.Lock()
|
|
ae.err = err
|
|
ae.lock.Unlock()
|
|
}
|
|
|
|
func (ae *AtomicError) Load() error {
|
|
ae.lock.Lock()
|
|
err := ae.err
|
|
ae.lock.Unlock()
|
|
return err
|
|
}
|