Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Make description in "Public Interfaces" more concretely

...

Code Block
languagejava
themeEclipse
"[" + this.streamName + "]: " + mapper.apply(keyToPrint, valueToPrint)

Public Interfaces

...

Expanding KStream#print() which also need to be extended another version of print.

Code Block
languagejava
themeEclipse
void print(final KeyValueMapper<? super K, ? super V, String> mapper);
 
void print(final KeyValueMapper<? super K, ? super V, String> mapper, final String streamName);
 
void print(final KeyValueMapper<? super K, ? super V, String> mapper, final Serde<K> keySerde, final Serde<V> valSerde);
 
void print(final KeyValueMapper<? super K, ? super V, String> mapper, final Serde<K> keySerde, final Serde<V> valSerde, final String streamName);

Proposed Changes

A straightforward first pass is on GitHub PR#3085.

...