Efficiently puts contents of the specified map into the named map. This method should be
preferred to TryAdd(TKey, TValue) when updating the map with a large
number of keys and values. If the named map already contains a mapping for a key, its value
will be replaced with the value in the input map.
Namespace: Soss.Client.Concurrent
Assembly: soss_namedcache (in soss_namedcache.dll) Version: 6.2.0.0
Syntax
Parameters
- map
- Type: Soss.Client.Concurrent.NamedMap<TKey, TValue>
Another instance of a NamedMap<TKey, TValue> class that is used as source of data.
Exceptions
Exception | Condition |
---|---|
BulkLoaderException | Thrown when unable to add key/value pairs to the map using the BulkLoader<TKey, TValue> class based approach. |
See Also