Set sets the error value regardless of the previous value. The value must not be nil
(value error)
| 765 | // Set sets the error value regardless of the previous value. |
| 766 | // The value must not be nil |
| 767 | func (ae *atomicError) Set(value error) { |
| 768 | ae.value.Store(value) |
| 769 | } |
| 770 | |
| 771 | // Value returns the current error value |
| 772 | func (ae *atomicError) Value() error { |
no outgoing calls