Interface Store<T>

All Known Subinterfaces:
RepositoryRW<T>, ThingRepositoryStore
All Known Implementing Classes:
AlwaysThingRepositoryStore, DatatypeRepositoryBuilder, MemoryRepositoryRW, NamespaceRepositoryBuilder, RepositoryBuilder, ThingMemoryRepositoryROBuilder, ThingMemoryRepositoryRW

public interface Store<T>
Stores "store" (AKA "save" or you can "put") Ts in(to) them.

Stores which are also Provider typically internally actually are, or delegate to, a StoreKV, but their external API is store(T value) instead of StoreKV.store(Object, Object) simply because they internally extract a key from T.

  • Method Details

    • store

      @CanIgnoreReturnValue Store<T> store(T item)
      Store a T.

      If this store already has this T, then it's replaced (entirely, not "merged").

    • storeAll

      @CanIgnoreReturnValue default Store<T> storeAll(Iterable<T> items)
      Store multiple Ts; see store(Object).