Click or drag to resize

InterlockedCounter Class

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Implementation of AtomicCounter based on .NET System.Threading.Interlocked class.
Inheritance Hierarchy

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public class InterlockedCounter : AtomicCounter

The InterlockedCounter type exposes the following members.

Constructors
  NameDescription
Public methodInterlockedCounter
Initializes a new instance of the InterlockedCounter class
Top
Methods
  NameDescription
Protected methodAdjust
Adjust the value of the counter by the specified amount, and return the new value.
(Overrides AtomicCounterAdjust(Int64).)
Public methodDecrement
Decrement the value, and return the new value.
(Inherited from AtomicCounter.)
Public methodDecrement(Int64)
Decrement the value by c, and return the new value.
(Inherited from AtomicCounter.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetCount
Return the current value of the counter.
(Overrides AtomicCounterGetCount.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIncrement
Increment the value, and return the new value.
(Inherited from AtomicCounter.)
Public methodIncrement(Int64)
Incremenet the value by c, and return the new value.
(Inherited from AtomicCounter.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodPostAdjust
Adjust the value of the counter by the specified amount, and return the old value.
(Overrides AtomicCounterPostAdjust(Int64).)
Public methodPostDecrement
Decrement the value, and return the original value.
(Inherited from AtomicCounter.)
Public methodPostDecrement(Int64)
Decrement the value by c, and return the original value.
(Inherited from AtomicCounter.)
Public methodPostIncrement
Incremenet the value, and return the original value.
(Inherited from AtomicCounter.)
Public methodPostIncrement(Int64)
Incremenet the value by c, and return the original value.
(Inherited from AtomicCounter.)
Public methodSetCount(Int64)
Update the current value, and return the previous value.
(Overrides AtomicCounterSetCount(Int64).)
Public methodSetCount(Int64, Int64)
Update the current value, only if it is equal to the assumed value.
(Overrides AtomicCounterSetCount(Int64, Int64).)
Public methodToString
Return the count as a string.
(Inherited from AtomicCounter.)
Top
Fields
  NameDescription
Protected fieldm_counter
The actual counter value.
Top
See Also