Interface ReadWriteMetastorage
-
- All Superinterfaces:
ReadOnlyMetastorage
- All Known Implementing Classes:
MetaStorage
public interface ReadWriteMetastorage extends ReadOnlyMetastorage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidremove(@NotNull String key)voidwrite(@NotNull String key, @NotNull Serializable val)voidwriteRaw(String key, byte[] data)-
Methods inherited from interface org.apache.ignite.internal.processors.cache.persistence.metastorage.ReadOnlyMetastorage
iterate, read, readRaw
-
-
-
-
Method Detail
-
write
void write(@NotNull @NotNull String key, @NotNull @NotNull Serializable val) throws IgniteCheckedException- Throws:
IgniteCheckedException
-
writeRaw
void writeRaw(String key, byte[] data) throws IgniteCheckedException
- Throws:
IgniteCheckedException
-
remove
void remove(@NotNull @NotNull String key) throws IgniteCheckedException- Throws:
IgniteCheckedException
-
-