AtomicReference<(Of <(<'T>)>)> Class

Implementation of the java.concurrent.util AtomicReference type. Uses [Interlocked.MemoryBarrier] internally to enforce ordering of writes without any explicit locking. .NET's strong memory on write guarantees might already enforce this ordering, but the addition of the MemoryBarrier guarantees it.

Namespace:  Akka.Util
Assembly:  Akka (in Akka.dll)

Syntax


public class AtomicReference<T>
Public Class AtomicReference(Of T)
generic<typename T>
public ref class AtomicReference

Type Parameters

T

Inheritance Hierarchy


Object
  Akka.Util..::..AtomicReference<(Of <(<'T>)>)>