docs/vendor/go.uber.org/atomic
knative-automation 18eeabadbf
upgrade to latest dependencies (#3749)
bumping knative.dev/hack de04b70...e35bcb8:
  > e35bcb8 Rollback random GOBIN and make it relative to GOPATH again (# 73)
  > 1c52c48 Skip GOPATH hacks if the repository is already on GOPATH (# 72)

Signed-off-by: Knative Automation <automation@knative.team>
2021-06-10 13:15:43 -07:00
..
.codecov.yml upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
.gitignore Switch from dep to go mod (#2718) 2020-08-26 13:58:06 -07:00
.travis.yml upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
CHANGELOG.md upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
LICENSE.txt Hello world - Go for Knative Eventing. (#1862) 2019-10-23 11:01:28 -07:00
Makefile upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
README.md upgrade to latest dependencies (#3749) 2021-06-10 13:15:43 -07:00
bool.go upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
bool_ext.go upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
doc.go upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
duration.go upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
duration_ext.go upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
error.go upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
error_ext.go upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
float64.go upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
float64_ext.go upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
gen.go upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
go.mod upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
go.sum upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
int32.go upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
int64.go upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
nocmp.go upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
string.go upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
string_ext.go upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
uint32.go upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
uint64.go upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00
value.go upgrade to latest dependencies (#2986) 2020-10-29 14:01:36 -07:00

README.md

atomic GoDoc Build Status Coverage Status Go Report Card

Simple wrappers for primitive types to enforce atomic access.

Installation

$ go get -u go.uber.org/atomic@v1

Legacy Import Path

As of v1.5.0, the import path go.uber.org/atomic is the only supported way of using this package. If you are using Go modules, this package will fail to compile with the legacy import path path github.com/uber-go/atomic.

We recommend migrating your code to the new import path but if you're unable to do so, or if your dependencies are still using the old import path, you will have to add a replace directive to your go.mod file downgrading the legacy import path to an older version.

replace github.com/uber-go/atomic => github.com/uber-go/atomic v1.4.0

You can do so automatically by running the following command.

$ go mod edit -replace github.com/uber-go/atomic=github.com/uber-go/atomic@v1.4.0

Usage

The standard library's sync/atomic is powerful, but it's easy to forget which variables must be accessed atomically. go.uber.org/atomic preserves all the functionality of the standard library, but wraps the primitive types to provide a safer, more convenient API.

var atom atomic.Uint32
atom.Store(42)
atom.Sub(2)
atom.CAS(40, 11)

See the documentation for a complete API specification.

Development Status

Stable.


Released under the MIT License.