Kafka - Streams
Given the following Kafka Streams code snippet, what will be the output printed?
var stream = builder.stream("orders");
var table = builder.table("orders");
stream.foreach((k, v) -> System.out.println("Stream: " + k + ":" + v));
table.toStream().foreach((k, v) -> System.out.println("Table: " + k + ":" + v));
Assuming the topic orders has these records in order: (1, "A"), (1, "B"), (2, "C").