I have a flow:
A +----> B +----> D
| |
| +----> E
|
+----> C +----> G
|
+----> H
I want implement this flow by Akka Stream. Output of Node B and C is a List and input of D,E,G,H is an element in the List. I have tried: - Create a Source from Sink of Flow A ---> B or A --->C
But i am not lucky. Do you have any suggestion?