Package | Description |
---|---|
org.corfudb.runtime.collections |
Modifier and Type | Method and Description |
---|---|
default void |
ISMRMap.blindPut(K key,
V value)
Deprecated.
This operation behaves like a put operation, but does not
return the previous value, and does not result in a read
of the map.
|
boolean |
CorfuTable.containsKey(Object key) |
boolean |
ISMRMap.containsKey(Object key)
Deprecated.
|
void |
CorfuTable.delete(K key)
Delete a key from a map.
|
V |
CorfuTable.get(Object key) |
V |
ISMRMap.get(Object key)
Deprecated.
|
void |
CorfuTable.insert(K key,
V value)
Insert a key-value pair into a map, overwriting any previous mapping.
|
V |
CorfuTable.put(K key,
V value) |
V |
ISMRMap.put(K key,
V value)
Deprecated.
|
V |
CorfuTable.remove(Object key) |
V |
ISMRMap.remove(Object key)
Deprecated.
|
Copyright © 2019 CorfuDB. All rights reserved.