Akka-Streams collecting data (Source -> Flow -> Flow (collect) -> Sink)
I'm totally new in Scala and Akka. I've a simple RunnableFlow: Source -> Flow (do some transformation) -> Sink.runForeach Now I want something like this: Source -> Flow1 (do some transformation) -> Flow2 (do some transformation) -> Sink.runForeach But Flow2 should wait until 100 elements from Flow1 are available and then transform these 100 elements to a new element (which needs all 100 elements from Flow1) and give this new element to the Sink. I did some research and found Explicit user defined buffers but I don´t understand how I can access all 100 elements from flow1 in flow2 and do some