diff --git a/streams/src/main/java/org/apache/kafka/streams/kstream/Produced.java b/streams/src/main/java/org/apache/kafka/streams/kstream/Produced.java index 6c3ed8ca8c6db..b14c846925f40 100644 --- a/streams/src/main/java/org/apache/kafka/streams/kstream/Produced.java +++ b/streams/src/main/java/org/apache/kafka/streams/kstream/Produced.java @@ -26,7 +26,8 @@ /** * This class is used to provide the optional parameters when producing to new topics - * using {@link KStream#through(String, Produced)} or {@link KStream#to(String, Produced)}. + * using {@link KStream#to(String, Produced)}. + * * @param key type * @param value type */ @@ -61,7 +62,6 @@ protected Produced(final Produced produced) { * @param key type * @param value type * @return A new {@link Produced} instance configured with keySerde and valueSerde - * @see KStream#through(String, Produced) * @see KStream#to(String, Produced) */ public static Produced with(final Serde keySerde, @@ -80,7 +80,6 @@ public static Produced with(final Serde keySerde, * @param key type * @param value type * @return A new {@link Produced} instance configured with keySerde, valueSerde, and partitioner - * @see KStream#through(String, Produced) * @see KStream#to(String, Produced) */ public static Produced with(final Serde keySerde, @@ -107,7 +106,6 @@ public static Produced as(final String processorName) { * @param key type * @param value type * @return A new {@link Produced} instance configured with keySerde - * @see KStream#through(String, Produced) * @see KStream#to(String, Produced) */ public static Produced keySerde(final Serde keySerde) { @@ -120,7 +118,6 @@ public static Produced keySerde(final Serde keySerde) { * @param key type * @param value type * @return A new {@link Produced} instance configured with valueSerde - * @see KStream#through(String, Produced) * @see KStream#to(String, Produced) */ public static Produced valueSerde(final Serde valueSerde) { @@ -135,7 +132,6 @@ public static Produced valueSerde(final Serde valueSerde) { * @param key type * @param value type * @return A new {@link Produced} instance configured with partitioner - * @see KStream#through(String, Produced) * @see KStream#to(String, Produced) */ public static Produced streamPartitioner(final StreamPartitioner partitioner) { diff --git a/tools/src/main/java/org/apache/kafka/tools/VerifiableConsumer.java b/tools/src/main/java/org/apache/kafka/tools/VerifiableConsumer.java index 5be76f000622f..e930580d3daec 100644 --- a/tools/src/main/java/org/apache/kafka/tools/VerifiableConsumer.java +++ b/tools/src/main/java/org/apache/kafka/tools/VerifiableConsumer.java @@ -73,7 +73,7 @@ * See {@link org.apache.kafka.tools.VerifiableConsumer.PartitionsRevoked} *
  • partitions_assigned: outputs the partitions assigned through {@link ConsumerRebalanceListener#onPartitionsAssigned(Collection)} * See {@link org.apache.kafka.tools.VerifiableConsumer.PartitionsAssigned}.
  • - *
  • records_consumed: contains a summary of records consumed in a single call to {@link KafkaConsumer#poll(long)}. + *
  • records_consumed: contains a summary of records consumed in a single call to {@link KafkaConsumer#poll(Duration)}. * See {@link org.apache.kafka.tools.VerifiableConsumer.RecordsConsumed}.
  • *
  • record_data: contains the key, value, and offset of an individual consumed record (only included if verbose * output is enabled). See {@link org.apache.kafka.tools.VerifiableConsumer.RecordData}.