Class MapScanResult<K,V>
- java.lang.Object
-
- org.redisson.client.protocol.decoder.MapScanResult<K,V>
-
- Type Parameters:
K
- key typeV
- value type
- All Implemented Interfaces:
ScanResult<Map.Entry<K,V>>
- Direct Known Subclasses:
MapCacheScanResult
public class MapScanResult<K,V> extends Object implements ScanResult<Map.Entry<K,V>>
- Author:
- Nikita Koksharov
-
-
Constructor Summary
Constructors Constructor Description MapScanResult(long pos, Map<K,V> values)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<K,V>
getMap()
long
getPos()
RedisClient
getRedisClient()
Collection<Map.Entry<K,V>>
getValues()
void
setRedisClient(RedisClient client)
-
-
-
Method Detail
-
getValues
public Collection<Map.Entry<K,V>> getValues()
- Specified by:
getValues
in interfaceScanResult<K>
-
getPos
public long getPos()
- Specified by:
getPos
in interfaceScanResult<K>
-
setRedisClient
public void setRedisClient(RedisClient client)
- Specified by:
setRedisClient
in interfaceScanResult<K>
-
getRedisClient
public RedisClient getRedisClient()
- Specified by:
getRedisClient
in interfaceScanResult<K>
-
-