I know joins can be performed using the dsl api. We need to use the processor api for various reasons.
How would one implement joining to streams using the processor api. Some ideas I had but dont think they are right.
One processor with multiple source topics. Base Object for the process interface and then cast to correct type inside process method.
Two Processors each with their own source topic. Each processor gets read only access to the other processors state store (if that is possible).
Any ideas - I did find the join implementation in KStreamImpl but am having trouble following. Perhaps an explantation on how the dsl does it?