-
Hello! The following are examples of what I've tried:
And:
I just have
But "Option A" remains selected even after the "changing state now..." action takes place. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
Nevermind - I found the solution! I need to add |
Beta Was this translation helpful? Give feedback.
-
OK - actually only halfway there. |
Beta Was this translation helpful? Give feedback.
-
I now have something that works... it relies on a separate queue system rather than working with the state directly, so not sure if this is a real solution or more of a workaround, but it achieves what I need. Posting in case others run into similar situation:
Data can then be pushed to this application by connecting to the QueueManager and putting data (in this instance, data should be 'Option A', 'Option B', or 'Option C' to properly update the test_val. |
Beta Was this translation helpful? Give feedback.
-
That example illustrates a thread synchronizing method call to the event loop. Here is another one doing state update from another thread. |
Beta Was this translation helpful? Give feedback.
I now have something that works... it relies on a separate queue system rather than working with the state directly, so not sure if this is a real solution or more of a workaround, but it achieves what I need. Posting in case others run into similar situation: