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