sync

package
v1.20.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 29, 2024 License: Apache-2.0 Imports: 1 Imported by: 11

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type OnceErr

type OnceErr struct {
	// contains filtered or unexported fields
}

OnceErr wraps the behavior of recording an error once and signal on a channel when this has occurred. Signaling is done by closing of the channel.

Type is safe for concurrent usage.

func NewOnceErr

func NewOnceErr() *OnceErr

NewOnceErr return a new OnceErr

func (*OnceErr) Err

func (e *OnceErr) Err() error

Err acquires a read-lock and returns an error if one has been set.

func (*OnceErr) ErrorSet

func (e *OnceErr) ErrorSet() <-chan struct{}

ErrorSet returns a channel that will be used to signal that an error has been set. This channel will be closed when the error value has been set for OnceErr.

func (*OnceErr) SetError

func (e *OnceErr) SetError(err error)

SetError acquires a write-lock and will set the underlying error value if one has not been set.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL