You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use Thread 1 with normal signal evaluation to mark a binding as dirty.
Then have all the dependent properties associated with a BindingEvaluator.
This binding evaluator would then be evaluated by Thread 2 (typically GUI Thread), so the evaluation actually happens on a separate thread.
For this to work the following would need to be thread-safe:
Marking of a binding as dirty.
Reading from a Property & updating the bindings internal cache
Disconnecting/Connecting of Signals when creating a Binding
The text was updated successfully, but these errors were encountered:
Use Thread 1 with normal signal evaluation to mark a binding as dirty.
Then have all the dependent properties associated with a BindingEvaluator.
This binding evaluator would then be evaluated by Thread 2 (typically GUI Thread), so the evaluation actually happens on a separate thread.
For this to work the following would need to be thread-safe:
The text was updated successfully, but these errors were encountered: