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.
22 lines
281 B
Go
22 lines
281 B
Go
4 years ago
|
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
|
||
|
}
|