-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Threading_InterlockedOperations_Update_6
Andrew Koryavchenko edited this page Jun 17, 2018
·
6 revisions
Implements lock-free update pattern implementation based on compare-and-swap loop
Namespace: CodeJam.Threading
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static float Update(
ref float value,
Func<float, float> updateCallback
)
VB
Public Shared Function Update (
ByRef value As Single,
updateCallback As Func(Of Single, Single)
) As Single
F#
static member Update :
value : float32 byref *
updateCallback : Func<float32, float32> -> float32
- value
- Type: System.Single
Value to change. - updateCallback
- Type: System.Func(Single, Single)
Function to calculate new value.
Type: Single
New value.
Uses the same approach that used by c# compiler in event subscription methods
InterlockedOperations Class
Update Overload
CodeJam.Threading Namespace