-
Hello, I have a workflow in which I feed a queue with certain data, and there is a forked task which processes those data. ...
from cancel in fork(tighteningData | SaveToFile | ListFiles | SaveToDb | DelFiles)
... where I noticed that multiple sequences of What should be the concise way to lower the parallelism to 1 in order that I could process the tightening data (with steps Thanks for your help in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
May I know what is the difference between the two? |
Beta Was this translation helpful? Give feedback.
-
Interestingly, |
Beta Was this translation helpful? Give feedback.
-
@mozesa This should be fixed in |
Beta Was this translation helpful? Give feedback.
Queue
is quite badly named I think, it's closer to aSubject
in Rx.NET. I will fix it to work correctly as a queue, and maybe add a new type that acts more like aSubject
.Interestingly,
Producer.merge(...)
does actually use aConcurrentQueue
internally to make sure that any merged Producers turn into a single stream. So, it does do exactly what you need (when 'merging' a singleProducer
).