| HazelcastClientGetCountDownLatch Method |
Creates cluster-wide CountDownLatch.
Namespace:
Hazelcast.Client
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.3
Syntax public ICountDownLatch GetCountDownLatch(
string name
)
Public Function GetCountDownLatch (
name As String
) As ICountDownLatch
public:
virtual ICountDownLatch^ GetCountDownLatch(
String^ name
) sealed
abstract GetCountDownLatch :
name : string -> ICountDownLatch
override GetCountDownLatch :
name : string -> ICountDownLatch
Parameters
- name
- Type: SystemString
name of the ICountDownLatch proxy
Return Value
Type:
ICountDownLatchICountDownLatch proxy for the given name
Implements
IHazelcastInstanceGetCountDownLatch(String)Remarks
Creates cluster-wide CountDownLatch. Hazelcast ICountDownLatch is distributed
implementation of
CountdownEvent.
See Also