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