| IHazelcastInstanceGetReplicatedMapTKey, TValue Method |
Returns the replicated map instance with the specified name.
Namespace:
Hazelcast.Core
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.3
Syntax IReplicatedMap<TKey, TValue> GetReplicatedMap<TKey, TValue>(
string name
)
Function GetReplicatedMap(Of TKey, TValue) (
name As String
) As IReplicatedMap(Of TKey, TValue)
generic<typename TKey, typename TValue>
IReplicatedMap<TKey, TValue>^ GetReplicatedMap(
String^ name
)
abstract GetReplicatedMap :
name : string -> IReplicatedMap<'TKey, 'TValue>
Parameters
- name
- Type: SystemString
name of the distributed map
Type Parameters
- TKey
- The type of the keys in the map
- TValue
- The type of the values in the map
Return Value
Type:
IReplicatedMapTKey,
TValuedistributed map instance with the specified name
See Also