How to forward event downstream from a Punctuator instance in a ValueTransformer?
问题 In KafkaStream, when implementing a ValueTransformer or ValueTransformerWithKey , on transform() call, I schedule a new Punctuator. When method punctuate() of the Punctuator is executed I want it to forward an event downstream using the context instance. However, the context instance seems not defined when part of a DSL topology. Any clue on how to do this with a Transformer ? Using the same logic in a Processor, implementing the low-level processor topology it works. In