Versions Compared

Key

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

...

This page is meant as a template for writing a KIP. To create a KIP choose Tools->Copy on this page and modify with your content and replace the heading with the next KIP number and a description of your issue. Replace anything in italics with your own description.

Status

Current state: Under Discussion Discarded in favor of KIP-456: Helper classes to make it simpler to write test logic with TopologyTestDriver

Discussion thread: here [Change the link from the KIP proposal email archive to your own email thread]

...

Code Block
public Iterable<ProducerRecord<byte[], byte[]>> iterateOutputiterableOutput(final String topic)

public <K, V> Iterable<ProducerRecord<K, V>> iterateOutputiterableOutput(final String topic,
                                                               final Deserializer<K> keyDeserializer,
                                                               final Deserializer<V> valueDeserializer)

...

  • As these are new methods there should be no impact on existing users

Rejected Alternatives

...