GetAsync Method
GetAsync(TKey)
Gets the value for the specified key.
Declaration
Task<TValue> GetAsync(TKey key)
Parameters
TKey | key | The key. |
Returns
Task<TValue> | The value for the specified key, if any; otherwise |
Remarks
This methods interacts with the server-side MapStore
.
If no value for the specified key is found in memory, MapLoader.load(...)
is invoked
to try to load the value from the MapStore
backing the map, if any.