Skip to content

AbstractStoreBuilder

AbstractStoreBuilder is a base abstraction of the StoreBuilder abstraction.

AbstractStoreBuilder<K, V, T extends StateStore>

Implementations

Creating Instance

AbstractStoreBuilder takes the following to be created:

  • Name
  • Key Serde<K>
  • Value Serde<V>
  • Time

Abstract Class

AbstractStoreBuilder is an abstract class and cannot be created directly. It is created indirectly for the concrete AbstractStoreBuilders.

Back to top