Hello friends,
just a questions. is it normal that when I generate signals like this
//c++ side
for(int i = 0; i < 1000000; ++i){
emit testSignal(i);
}
//on qml side
....
onTestSignal:{
console.log(count)// or any other binding
.....
}
//c++ side
for(int i = 0; i < 1000000; ++i){
emit testSignal(i);
}
//on qml side
....
onTestSignal:{
console.log(count)// or any other binding
.....
}
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?
Bookmarks