Versions Compared

Key

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

...

In KStreamBuilder.java overload each of the following APIs by adding store name:

  •  public <K, V> KTable<K, V> table(final String topic);
  • public <K, V> GlobalKTable<K, V> globalTable(final String topic)

  • public <K, V> GlobalKTable<K, V> globalTable(final Serde<K> keySerde, final Serde<V> valSerde, final String topic)

In KGroupedTable.java overload each of the following APIs by adding store name:

...