Package org.apache.ignite.kvs
Interface ObjectKeyValueStore
-
public interface ObjectKeyValueStore
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceObjectKeyValueStore.Entry
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.ignite.internal.util.lang.GridCursor<ObjectKeyValueStore.Entry>cursor()Objectget(Object key)ObjectgetAndRemove(Object key)voidput(Object key, Object value)voidremove(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
-
-