| HazelcastClientGetAtomicLong Method |
Creates cluster-wide atomic long.
Namespace:
Hazelcast.Client
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.3
Syntax public IAtomicLong GetAtomicLong(
string name
)
Public Function GetAtomicLong (
name As String
) As IAtomicLong
public:
virtual IAtomicLong^ GetAtomicLong(
String^ name
) sealed
abstract GetAtomicLong :
name : string -> IAtomicLong
override GetAtomicLong :
name : string -> IAtomicLong
Parameters
- name
- Type: SystemString
name of the IAtomicLong proxy
Return Value
Type:
IAtomicLongIAtomicLong proxy for the given name
Implements
IHazelcastInstanceGetAtomicLong(String)Remarks
Creates cluster-wide atomic long. Hazelcast IAtomicLong is distributed
implementation of Interlocked.
See Also