Is it possible to implement a complext parallel processors flow in spring cloud data flow using the preset modules?
For example:
Processor 1, 2, 3 are all preset modules (httpclient etc). Processor 1 and 3 will get the same message from source at the same time, then processor 1 pipes the output to processor 2. Upon both processor 2 and 3 complete, they pipe the output to processor 4 at the same time. The output from processor 2 is irrelevant, it is fine that processor 4 only gets the output from 3. However, processor 3 should only send messages to 4 when processor 2 is complete.
Is this something that can be accomplished using Spring Cloud Data Flow?