Hello friends,

just a questions. is it normal that when I generate signals like this

Qt Code:
  1. //c++ side
  2. for(int i = 0; i < 1000000; ++i){
  3. emit testSignal(i);
  4. }
  5.  
  6. //on qml side
  7. ....
  8. onTestSignal:{
  9. console.log(count)// or any other binding
  10. .....
  11. }
To copy to clipboard, switch view to plain text mode 

that its blocks my qml gui? Its realy not reactive!

How can I achieve nonblocking reaction to the signals?