Package org.apache.ignite.kvs
Interface ObjectKeyValueStore
-
public interface ObjectKeyValueStore
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
ObjectKeyValueStore.Entry
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.ignite.internal.util.lang.GridCursor<ObjectKeyValueStore.Entry>
cursor()
Object
get(Object key)
Object
getAndRemove(Object key)
void
put(Object key, Object value)
void
remove(Object key)
-
-
-
Method Detail
-
put
void put(Object key, Object value) throws IgniteCheckedException
- Throws:
IgniteCheckedException
-
get
Object get(Object key) throws IgniteCheckedException
- Throws:
IgniteCheckedException
-
remove
void remove(Object key) throws IgniteCheckedException
- Throws:
IgniteCheckedException
-
getAndRemove
Object getAndRemove(Object key) throws IgniteCheckedException
- Throws:
IgniteCheckedException
-
cursor
org.apache.ignite.internal.util.lang.GridCursor<ObjectKeyValueStore.Entry> cursor() throws IgniteCheckedException
- Throws:
IgniteCheckedException
-
-