| AtomicBoolean Class |
Namespace: Akka.Util
The AtomicBoolean type exposes the following members.
| Name | Description | |
|---|---|---|
| AtomicBoolean |
Sets the initial value of this AtomicBoolean to [!:originalValue].
|
| Name | Description | |
|---|---|---|
| CompareAndSet |
If Value equals [!:expected], then set the Value to
[!:newValue].
Returns true if [!:newValue] was set, false otherise.
| |
| Equals | (Inherited from Object.) | |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
| GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
| GetType | Gets the Type of the current instance. (Inherited from Object.) | |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
| ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
| (Boolean to AtomicBoolean) |
Implicit conversion operator = allows us to cast any bool directly into a AtomicBoolean instance.
| |
| (AtomicBoolean to Boolean) |
Implicit conversion operator = automatically casts the AtomicBoolean to a Boolean |
| Name | Description | |
|---|---|---|
| AsInstanceOfT | (Defined by Extensions.) | |
| Match |
Matches the specified target.
(Defined by PatternMatch.) |
| Name | Description | |
|---|---|---|
| Value |
The current value of this AtomicReferenceT |