Hi, I have a quick question related to manipulating streams.
I am splitting a stream by topic, which gives me the following Source: val groupedByFirstTopic: Source[(String, Source[JsObject, Unit]), Unit] = ... I then proceed to simplifying this Source by mapping over it, grouping some elements etc. which at the end gives me a Source of Source: val simplifiedFlows: Source[Source[JsValue, Unit], Unit] = ... Now here is my problem: these flows all run, potentially, infinitely. So using flatten() is not a very good choice since then only one of the Streams will make it out. Is there any way to use a merge operation to flatten this stream? I have the nagging feeling that this should be possible but I can't quite figure out how. Thanks, Manuel -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
