Kafka - Streams
Given the following Kafka Streams code snippet, what is the output type of
customerCounts?
var customerCounts = orders .groupBy((key, order) -> order.customerId) .count();
