Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

1. Add a materialized() method to the KTable abstraction:

/**

 

    * Materialize this KTable by creating a state store with given name. 

    * Throws exception if KTable is already materialized. 

    */ 

KTable<K, V> materialized(final String stateStoreName);

...