I'm writing a program in which several producers generate some data that should be processed by several consumers. Since the consumption of each piece of data takes around 100ms and the target platform has many processors, it seems natural to me that each producer and each consumer gets its own thread. My question is: Are Qt signals/slots a good way for passing data blocks from producers to consumers? Or do you suggest a better solution (Qt is strongly preferred).
Just in case it's relevant, the producers produce data in bursts of several hundred thousands every hour or so.
