Hi Paul,
As reference to the sample project given above, I need to take the value (56) which I have given in screen and process for one time, As I wanted to do that for one time. I tried to post signal the slot from the init of that class, so that when that slot is post signaled from init It will trigger one time, also the property will be initialized with the expected value.
But the issue is I am calling the update() method of this class from the screen, that update() should only be executed once that post signaled execution is completed. As it is getting signaled from init and update is called from the screen, I couldn't determine the sequence.
1) post signaled slot is getting executed first then update.
2) update is getting executed first then post signaled slot from init
I want the 1st sequence to occur, not the second one, if second sequence occurs it will crash the system. It is not possible using post signaling from init, is there any other reliable and efficient way to do this.
Thank you,
Meenakshi Sundaram S R.