atomic

package
v1.6.5 Latest Latest
Warning

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

Go to latest
Published: Aug 28, 2015 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AtomicArray

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

AtomicArray implement a fixed width array with atomic semantics

func NewAtomicArray

func NewAtomicArray(length int) *AtomicArray

NewAtomicArray generates a new AtomicArray instance.

func (*AtomicArray) Get

func (aa *AtomicArray) Get(idx int) interface{}

Get atomically retrieves an element from the Array. If idx is out of range, it will return nil

func (*AtomicArray) Length

func (aa *AtomicArray) Length() int

Length returns the array size.

func (*AtomicArray) Set

func (aa *AtomicArray) Set(idx int, node interface{}) error

Set atomically sets an element in the Array. If idx is out of range, it will return an error

type AtomicBool

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

AtomicBool implements a synchronized boolean value

func NewAtomicBool

func NewAtomicBool(value bool) *AtomicBool

NewAtomicBool generates a new AtomicBoolean instance.

func (*AtomicBool) CompareAndToggle added in v1.3.0

func (ab *AtomicBool) CompareAndToggle(expect bool) bool

CompareAndSet atomically sets the boolean value if the current value is equal to updated value.

func (*AtomicBool) Get

func (ab *AtomicBool) Get() bool

Get atomically retrieves the boolean value.

func (*AtomicBool) Set

func (ab *AtomicBool) Set(newVal bool)

Set atomically sets the boolean value.

type AtomicInt

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

AtomicInt implements an int value with atomic semantics

func NewAtomicInt

func NewAtomicInt(value int) *AtomicInt

NewAtomicInt generates a newVal AtomicInt instance.

func (*AtomicInt) AddAndGet

func (ai *AtomicInt) AddAndGet(delta int) int

AddAndGet atomically adds the given value to the current value.

func (*AtomicInt) CompareAndSet

func (ai *AtomicInt) CompareAndSet(expect int, update int) bool

CompareAndSet atomically sets the value to the given updated value if the current value == expected value. Returns true if the expectation was met

func (*AtomicInt) DecrementAndGet

func (ai *AtomicInt) DecrementAndGet() int

DecrementAndGet atomically decrements current value by one and returns the result.

func (*AtomicInt) Get

func (ai *AtomicInt) Get() int

Get atomically retrieves the current value.

func (*AtomicInt) GetAndAdd

func (ai *AtomicInt) GetAndAdd(delta int) int

GetAndAdd atomically adds the given delta to the current value and returns the result.

func (*AtomicInt) GetAndDecrement

func (ai *AtomicInt) GetAndDecrement() int

GetAndDecrement atomically decrements the current value by one and returns the result.

func (*AtomicInt) GetAndIncrement

func (ai *AtomicInt) GetAndIncrement() int

GetAndIncrement atomically increments current value by one and returns the result.

func (*AtomicInt) GetAndSet

func (ai *AtomicInt) GetAndSet(newValue int) int

GetAndSet atomically sets current value to the given value and returns the old value.

func (*AtomicInt) IncrementAndGet

func (ai *AtomicInt) IncrementAndGet() int

IncrementAndGet atomically increments current value by one and returns the result.

func (*AtomicInt) Set

func (ai *AtomicInt) Set(newValue int)

Set atomically sets current value to the given value.

type AtomicQueue

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

AtomicQueue is a non-blocking FIFO queue. If the queue is empty, nil is returned. if the queue is full, offer will return false

func NewAtomicQueue

func NewAtomicQueue(size int) *AtomicQueue

NewQueue creates a new queue with initial size.

func (*AtomicQueue) Offer

func (q *AtomicQueue) Offer(obj interface{}) bool

Offer adds an item to the queue unless the queue is full. In case the queue is full, the item will not be added to the queue and false will be returned

func (*AtomicQueue) Poll

func (q *AtomicQueue) Poll() (res interface{})

Poll removes and returns an item from the queue. If the queue is empty, nil will be returned.

Jump to

Keyboard shortcuts

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