Hi,

I just started with qtConcurrent and I am already fond of it. Great job ;-)

However, there is one thing I could not achieve yet, and maybe someone can help me out from here:

if I use the mappedReduced, how can I get access to partial results, before the whole list of inputs is processed? When I tried to access e.g. resultAt(0), it sometimes works, but most of the time, the program is just crashing.

Typically, what I do is some number crunching in the mapFunction, and I make a picture in the reduceFunction from the results. Both mapFunction and reduceFunction are static.

QFuture<T> QtConcurrent::mappedReduced (const Sequence & sequence, MapFunction mapFunction, ReduceFunction reduceFunction)

What I would like is show the image from time to time, so that we can see the progress "Live" while the sequence is being processed...

Thanks in advance for any help!!

0x4e84