Re: [akka-user] [akka-stream] Periodic source of sources

2015-01-27 Thread Boris Lopukhov
> > Since you do not want to produce ticks at all if the previous source is > still not complete, I think you will have to fallback to ActorPublisher and > implement it. > Thanks, i did so Can you specify this further? Also I would be happy to know the actual > use-case because nesting stream

Re: [akka-user] [akka-stream] Periodic source of sources

2015-01-23 Thread Martynas Mickevičius
There was a discussion on a similar but not completely exact topic that you described here . Since you do not want to produce ticks at all if the previous source is still not complete, I think you will have to fallback to ActorPublisher and implement it.

Re: [akka-user] [akka-stream] Periodic source of sources

2015-01-23 Thread Endre Varga
On Fri, Jan 23, 2015 at 5:45 PM, Martynas Mickevičius < martynas.mickevic...@typesafe.com> wrote: > There was a discussion on a similar but not completely exact topic that > you described here . > umm, no, that is slightly different if I understood the p

[akka-user] [akka-stream] Periodic source of sources

2015-01-22 Thread Boris Lopukhov
Hi all! How can i do a Source[Source[String]] that periodically emit the Source[String] with the specified interval, but only if the previous Source[String] is complete? -- >> Read the docs: http://akka.io/docs/ >> Check the FAQ: >> http://doc.akka.io/docs/ak