Interface Store<K,V>
-
- All Known Subinterfaces:
BlobStore
,RequestJournalStore
,ScenariosStore
- All Known Implementing Classes:
FileSourceBlobStore
,InMemoryRequestJournalStore
,InMemoryScenariosStore
public interface Store<K,V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
clear()
java.util.Optional<V>
get(K key)
java.util.stream.Stream<K>
getAllKeys()
void
put(K key, V content)
void
remove(K key)
-