I have a stream implemented using the high-level Kafka Streams KStream
API and would like to attach two consecutive processors to this stream.
The KStream
API provides a process method, however that method does not return anything so I assume it mutates the topology.
After the first processor I would like to attach a second one however and it's not entirely clear to me which object I can add the downstream processor to.
Any ideas?