Interface Store<K,V>

All Known Subinterfaces:
BlobStore, RequestJournalStore, ScenariosStore
All Known Implementing Classes:
FileSourceBlobStore, InMemoryRequestJournalStore, InMemoryScenariosStore

public interface Store<K,V>
  • Method Details

    • getAllKeys

      Stream<K> getAllKeys()
    • get

      Optional<V> get(K key)
    • put

      void put(K key, V content)
    • remove

      void remove(K key)
    • clear

      void clear()